Windows10远程桌面连接提示:出现身份验证错误,要求的函数不受支持。。。
错误信息: 出现身份验证错误,要求的函数不受支持。。。 解决办法: 1、按Windows键+R,或者在CMD命令窗口,输入“运行”,打开运行窗口, 2、输入regedit,打开注册表编辑器, 3、找到路径:计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\…
485 2021-06-03 去围观keepAlive动态缓存及清除缓存
keep-alive 例如A,B页面,A页面开启keepAlive,B返回A的时候时缓存的,但有时需要B返回A时取消A的keepAlive缓存。 这时候需要在A页面添加以下代码: { name: 'B', //给B路由添加一个name名字 path: '/B', component: (resolve) => require(['../comp…
1,168 2021-05-12 去围观computed和watch的区别是什么?
计算属性computed : 1、支持缓存,只有依赖数据发生改变,才会重新进行计算 2、不支持异步,当computed内有异步操作时无效,无法监听数据的变化 3、computed 属性值会默认走缓存,计算属性是基于它们的响应式依赖进行缓存的,也就是基于data中声明过或者父组…
498 2021-05-06 去围观Vue报错(Property or method "xxx" is not defined on the instance but referenced during render.)
报错如下: Property or method “xxx” is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. 原因: 你的“”xxx‘’…
1,695 2021-04-22 去围观