wujingjing
2024-08-29 19b778d2d04bed31ce2e1f167c6ff2fda9906421
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<template>
    <div>
        <div class="!size-10 bg-red-200">
            <svgIcon name="ywifont ywicon-next"></svgIcon>
            <span class="my-amis-scope">
                <span class="text-sm">你好</span>
            </span>
            <span class="my-amis-scope">
                <span class="iconfont icon-hosteye "></span>
 
 
            </span>
        </div>
        <AmisPage />
    </div>
</template>
 
<script setup lang="ts">
import AmisPage from './AmisPage.vue';
import IconSelector from '/@/components/iconSelector/index.vue';
 
import { ref } from 'vue';
 
const icon = ref('');
</script>
<style scoped lang="scss"></style>