1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <script setup lang="ts">
| import {ref} from "vue";
|
| const edit = ref('plus');
| </script>
|
| <template>
| <el-button type="primary">123</el-button>
| <el-tag>123</el-tag>
| <el-table></el-table>
| <el-icon>
| <component :is="edit"></component>
| </el-icon>
| <el-icon>
| <component :is="edit"></component>
| </el-icon>
| </template>
|
| <style scoped>
|
| </style>
|
|