This commit is contained in:
syuilo
2020-08-09 11:05:15 +09:00
parent ddcd3c3305
commit a5a7f8a031
13 changed files with 72 additions and 30 deletions

View File

@@ -32,9 +32,10 @@
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import define from './define';
export default define({
const widget = define({
name: 'calendar',
props: () => ({
transparent: {
@@ -42,7 +43,10 @@ export default define({
default: false,
},
})
}).extend({
});
export default defineComponent({
extends: widget,
data() {
return {
now: new Date(),