mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-12-09 14:40:27 +08:00
17 lines
372 B
Vue
17 lines
372 B
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import { IconSelect } from "/@/components/ReIcon";
|
|
let icon = ref("ep:add-location");
|
|
</script>
|
|
|
|
<template>
|
|
<el-card>
|
|
<template #header>
|
|
<div class="card-header">
|
|
<span class="font-medium">图标选择器</span>
|
|
</div>
|
|
</template>
|
|
<IconSelect v-model="icon" />
|
|
</el-card>
|
|
</template>
|