图片
<template>
<icon :src="AddIcon" />
</template>
<script>
import { defineComponent } from "vue";
import AddIcon from "./add.svg";
export default defineComponent({
name: "Icons",
setup() {
return {
AddIcon,
};
},
});
</script>
<style lang="scss" scoped>
.yoga-icon {
width: 16px;
height: 16px;
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25