vue3 ts 生命周期函数写法

发布时间 2023-11-20 09:56:06作者: 寒冷的雨呢

写法1

import { defineAsyncComponent, ref, reactive, onMounted, nextTick, computed, watch } from 'vue';

// 页面加载时
onMounted(() => {
	initResize();
});
// 监听双向绑定 modelValue 的变化
watch(
	() => props.modelValue,
	() => {
		initModeValueEcho();
		initFontIconName();
	}
);