gitakachan / vue-project-collections-and-issues

vue issues
0 stars 0 forks source link

v-calender 使用 #13

Open gitakachan opened 3 years ago

gitakachan commented 3 years ago

官方文檔:https://vcalendar.io/

vue 3 安裝:

npm install v-calendar@next
//main.js 引入
import VCalendar from "v-calendar";
const app = createApp(App);
app.use(VCalendar, {});
app.mount("#app");
//組件內基本使用
<template>
  <v-calendar />
  <v-date-picker v-model="date" />
</template>

更多複雜使用可參考: