Skip to content
On this page

快速开始

本节将介绍如何在项目中使用该组件库

用法

代码示例

js
 <xs-chooseIcon :title="title" v-model:visible="visible" />
<script setup lang="ts">
import { ref } from "vue";

const visible = ref<boolean>(false);
const title = ref<string>("选择图标");
</script>

Released under the MIT License.