随笔分类 - vue3+ts
摘要:export type OrcInsuranceRecordsTypeBarForm = { id?: number carNumber?: string subCompanyId?: string remarkDesc?: string insuranceVos?: { insuranceType
阅读全文
摘要:import { ref, reactive } from 'vue' // 引入ref reactive // ref定义 响应式数据中基础数据类型 reactive定义 响应式数据中复杂数据类型 // reactive定义时直接赋值会失去响应式 解决:1,使用ref定义 2,用对象包裹后再使用
阅读全文