2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-06-07 11:12:27 +03:00

vue3 base

This commit is contained in:
mengxiong10
2020-11-11 16:46:44 +08:00
commit 1325d41225
129 changed files with 25599 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<template>
<div>
<DatePicker v-model="value" />
</div>
</template>
<script>
import DatePicker from 'vue2-datepicker';
import 'vue2-datepicker/index.css';
export default {
name: 'App',
components: {
DatePicker,
},
data() {
return {
value: null,
};
},
};
</script>
+8
View File
@@ -0,0 +1,8 @@
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
+5
View File
@@ -0,0 +1,5 @@
import { createApp } from 'vue';
import App from './App.vue';
import './index.css';
createApp(App).mount('#app');