升级 vue 到 3.x 后,控制台报错:Uncaught TypeError: Cannot read properties of undefined (reading 'deep')at withDirectives (commons1.js:10679:17)at Proxy.render (eval at compileToFunction (commons1.js:40198:21),
2022-01-23
今天我将我的 google chrome 扩展程序 vue 版本升级到 3.x,运行应用程序时,google chrome 扩展程序弹出控制台显示如下错误:commons1.js:13392 Uncaught TypeError: Cannot read properties of undefined (reading 'extend')at Object../src/public/widget/
2022-01-22
代码:export default {data() {return {nameCity: '',}},methods: {findCity(event){event.preventDefault()findCityCust().then(function(response) {console.log(response)this.nameCity = response;})},},}这里 - thi
2021-11-10
我想使用 Vue CLI 构建一个 Vue 库。该项目更喜欢构建的库,而不是完全构建的应用程序。库构建可以,但不能与 Vue 3 结合使用。让我详细说明一下……首先创建一个简单的 Vue 3 应用程序。类似命令vue create的构建。然后使用以下命令构建库:vue build App.vue -t lib这会生成一些编译文件,其中一个是App.umd.js。当使用 Vue 2 和以下初始化代码
我想从 api 显示产品列表,但它显示错误:Uncaught (in promise) TypeError: Cannot read property 'id' of nullat eval (Home.vue?bb51:103)at renderList (runtime-core.esm-bundler.js?5c40:6635)at Proxy.render (Home.vue?bb51:2
2021-08-12
当我尝试在 vuejs 中更新数据字段时出现此错误。data() {return {form : useForm({imageFile : null,img_id : null,}),product_images : this.images,}},在这里,我在用户发送的发布请求成功后更新 product_images。像这样。this.form.post(url, {onStart : () =>
使用 Vuelidate vue.js 最新版本的 vue3,使用helpers.forEach方法处理对象数组。我尝试运行表单,但验证导致出现以下错误Gives $response.$errors is undefined in the consoleUncaught (in promise) TypeError: $response.$errors is undefinedexport def
我在使用新版 vuetify 3 定义主题设置时遇到了一些麻烦。文档示例(针对 Vuetify3):// src/plugins/vuetify.jsimport { createApp } from 'vue'import { createVuetify } from 'vuetify'export default createVuetify({theme: {defaultTheme: 'my
2021-06-15
我正在使用 Vue 3,我想根据对象的值显示图像所以我有类似的东西:<imgv-if="results.object.value === 'test'"src="@/assets/images/services/img.svg"class="w-60"alt=""/><imgv-else-if="results.object.value === 'test2'"src="@/assets/imag
我想从云 firestore 获取产品,我以这种方式存储HelloWorld.vue 组件:import db from "./firebaseInit";export default {name: "HelloWorld",data() {return {products: [],imageURL: "",};},created () {db.collection("product").doc(
2021-01-02
我无法通过VUE 3中的$插槽对象循环以使所有插槽从父母到孩子,$插槽对象在子组件中似乎是空的。我如何通过$插槽循环对象将所有父插槽传递给子零件?我在运行代码时会遇到此错误:TypeError:无法读取Null的属性(读取'键')这是关于我的沙盒问题,您可以取消第5行以查看完整的结果:bush-g7c9h?file =/src/pages/index.vuegithub示例:https://git
2022-02-09
我尝试使用 JSON 对象获取 id:"object1":[{"name":"Station A","cycleTime":5,"object2":{"id":"60","time":032820200122}}],此对象正在 Visual Studio Code 上的 json 服务器中运行Vue.js 代码:<template><div><div v-for="object1 in stati
2021-03-28
我正在尝试实现一个用于验证表单的包装器类。这个想法是,这个 Form 类接收一个带有处理程序的数据对象,该处理程序执行必要的检查并填充错误列表。此类还有一个方法可以返回特定字段的错误列表。此外,我还创建了一个容器组件,其中有一个插槽用于显示字段的标签。此组件定义了一个插槽,其中包含使用 v-model 指令绑定值的表单元素(例如输入)。我的期望是,当用户更新输入字段时,如果出现错误,验证错误占位符
我在以下代码中遇到了一个我无法理解的 TS 错误:<script lang="ts">import {defineComponent, computed, toRef} from 'vue'import _ from 'lodash'import {DateTime} from 'luxon'interface CalendarEvent {start: stringend: stringname
2021-08-14
在 Vue (v3) 中,使用validator添加 prop 会导致 TypeScript 错误,声称另一个属性不存在。我创建了一个组件来说明这个问题:这有效:<template><div>{{myComputed}}</div></template><script lang="ts">import { defineComponent, computed } from 'vue';export
2021-06-24