Skip to content
On this page

菜单

效果

代码示例

js

<template>
	<xs-chooseIcon :title="title" v-model:visible="visible" />
</template>

<script setup lang="ts">
import { ref } from "@vue/reactivity";
const visible = ref<boolean>(false);
const title = ref<string>("选择图标");
</script>



Released under the MIT License.