refactor: 组件示例重构

Former-commit-id: 039dc1ce505489c4d1b360fd50771a10b5476227
This commit is contained in:
haoxr
2023-01-14 18:37:22 +08:00
parent ed7afec7c6
commit 9ebccf0f45
10 changed files with 59 additions and 113 deletions

View File

@@ -0,0 +1,11 @@
<!-- 图标选择器 -->
<script setup lang="ts">
const value = ref('edit');
</script>
<template>
<div class="app-container">
<icon-select v-model="value" width="400px" />
</div>
</template>