This commit is contained in:
syuilo
2020-07-22 00:38:17 +09:00
parent 9415618992
commit 2f23776a90
6 changed files with 238 additions and 54 deletions

27
src/client/root.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<component :is="deck ? DeckUI : DefaultUI"/>
</template>
<script lang="ts">
import Vue from 'vue';
import DefaultUI from './default.vue';
import DeckUI from './deck.vue';
export default Vue.extend({
components: {
DefaultUI,
DeckUI,
},
data() {
return {
};
},
methods: {
dialog(opts) {
//this.$store.openDialog();
}
}
});
</script>