vue3 ts 生命周期函数写法
写法1
import { defineAsyncComponent, ref, reactive, onMounted, nextTick, computed, watch } from 'vue';
// 页面加载时
onMounted(() => {
initResize();
});
// 监听双向绑定 modelValue 的变化
watch(
() => props.modelValue,
(val) => {
initModeValueEcho();
initFontIconName();
}
);
择善人而交,择善书而读,择善言而听,择善行而从。