vue3 ts 生命周期函数写法

写法1

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

// 页面加载时
onMounted(() => {
	initResize();
});
// 监听双向绑定 modelValue 的变化
watch(
	() => props.modelValue,
	(val) => {
		initModeValueEcho();
		initFontIconName();
	}
);
posted @ 2023-11-20 09:46  寒冷的雨呢  阅读(225)  评论(0编辑  收藏  举报