Update IconFont.vue
This commit is contained in:
parent
41e4464224
commit
18e7d30b9c
|
@ -6,7 +6,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import {onMounted} from "vue";
|
||||
|
||||
|
||||
import {IconFontProps} from "@/types/components/iconfont/IconFont";
|
||||
|
@ -15,9 +14,10 @@ const props = withDefaults(defineProps<IconFontProps>(), {
|
|||
size: 25,
|
||||
type: "svg"
|
||||
});
|
||||
onMounted(() => {
|
||||
console.log(props.fontClass, props.type);
|
||||
});
|
||||
// import {onMounted} from "vue";
|
||||
// onMounted(() => {
|
||||
// console.log(props.fontClass, props.type);
|
||||
// });
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
|
Loading…
Reference in New Issue