edu/admin/src/views/permission/menu/select-icon/index.vue

24 lines
639 B
Vue
Raw Normal View History

2022-04-22 07:55:56 +00:00
<template>
<div class="select-icon">
2022-04-22 08:30:21 +00:00
<div>
2022-04-22 11:09:08 +00:00
<el-popover placement="bottom" :width="400" trigger="click">
2022-04-22 08:30:21 +00:00
<template #reference>
<el-button style="margin-right: 16px">
<el-icon><arrow-down /> </el-icon>
</el-button>
</template>
2022-04-22 11:09:08 +00:00
<div v-for="(item, index) in selectIcon" :key="index"></div>
2022-04-22 08:30:21 +00:00
</el-popover>
</div>
2022-04-22 07:55:56 +00:00
</div>
</template>
2022-04-22 11:09:08 +00:00
<script lang="ts" setup>
import { onMounted, reactive, ref } from 'vue'
const selectIcon = ref<any>([])
</script>
2022-04-22 07:55:56 +00:00
<style lang="scss" scoped></style>