vue3watch监听props的数据发现oldProps和newProps一样?
SelectDevice.vue是一个通用的弹窗组件,根据父组件的传来的curKey来判是否是不同的调用者来调用的,如果是相同的调用者则之前选择的数据不删除,如果…
vue3 使用element-plus 报dayjs错误?
The requested module '/node_modules/dayjs/plugin/isSameOrAfter.js' does not provide an export named 'default'…
vue3中组件内的路由守卫beforeRouteEnter的问题
组件内的路由守卫beforeRouteEnter,在composition api中被移除了后,怎样使用组件内前置路由守卫,在defineComponent内使用beforeRouteEnter:xxxx的…
TS如何定义对象中key的类型?
报错说string[]类型不能赋给never[]类型,也就是说ts默认给viewerImages对象中的array赋了never[],我现在想给这个array赋string[]类型应该就不会报错…
vue3对ref定义的数组不能直接赋值吗?
本来想用reactive来定义这个viewerImages,但发现viewerImages = [...spliceImages] 就失去响应式了,然后换成ref,用.value去赋值发现直接报错,不知…
按照官网步骤新建项目,引入Element-plus后打包错误
根据官网步骤新建项目:安装依赖并运行,成功import { createApp } from 'vue' import App from './App.vue' import ElementPlus from 'element-plus'…
vue3 如何使用render编写slot及其scope
如果我想在render前,不仅能渲染这个slot(该slot的外部传入的,并非本身组件的slot),还要给slot传值(scoped-slot),该如何写的…
Vue3中关于使用interface的问题
问题描述依照vue3官网教程上说法,使用interface作类型推断时,可以这样: interface Post{ content:string, //... } //defineComponent内 props: { p…
Vue3.0 如何注册ant-design-vue组件
如题看着官网写还是报错官网是new Vue 可是vue-cli4创建出来的项目是ctreateApp,官网写着Vue.component(Button.name,Button)跟着写又报错,所以到底…
composition-api的computed出问题
核心代码function useFormDialog(options={}){ const {baseTitle}=options; const [isAdd,{setTrue:setAdd,setFalse:setEdit}]=useBoolean(true); con…
vue3 jsx怎么使用?
问题描述我在尝试通过传入vnodes的方式渲染dom,然而jsx渲染的vnodes不符合预期问题出现的环境背景及自己尝试过哪些方法开发环境:vue3 vite2 ant-des…