mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-23 01:14:24 +08:00
17 lines
232 B
Vue
17 lines
232 B
Vue
<template>
|
|
<div>
|
|
<Count/>
|
|
<br>
|
|
<LoveTalk/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Count from '@/components/Count.vue'
|
|
import LoveTalk from '@/components/LoveTalk.vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|