forked from FoundKeyGang/FoundKey
refactor: visitor.vue to composition api
This commit is contained in:
parent
9a236bd862
commit
1f3b3abf68
1 changed files with 2 additions and 11 deletions
|
@ -3,17 +3,8 @@
|
|||
<XCommon/>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, defineAsyncComponent } from 'vue';
|
||||
import DesignA from './visitor/a.vue';
|
||||
<script lang="ts" setup>
|
||||
import { } from 'vue';
|
||||
import DesignB from './visitor/b.vue';
|
||||
import XCommon from './_common_/common.vue';
|
||||
|
||||
export default defineComponent({
|
||||
components: {
|
||||
XCommon,
|
||||
DesignA,
|
||||
DesignB,
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue