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