Vue3 V3+TS开发数据设置默认值不显示

如果提供的默认值需要在模板中渲染,需要额外添加配置,才能正常显示默认值

// vite.config.ts
export default {
  plugins: [
    vue({
      reactivityTransform: true
    })
  ]
}

猜你喜欢

转载自blog.csdn.net/m0_73461567/article/details/129095361