<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>
|