代码:export default {data() {return {nameCity: '',}},methods: {findCity(event){event.preventDefault()findCityCust().then(function(response) {console.log(response)this.nameCity = response;})},},}这里 - thi
2021-11-10
我的图片没有显示,并且标题出现错误。这是我的代码:<theme-cardv-for="theme in themes":router-link="`/theme/${theme.slug}`":key="theme.id":name="theme.name":tags="theme.tags":id="theme.id":imgPath="theme.image.path"></theme-car
2021-11-08
我正在使用 VueJS 并遇到了此错误。如何修复此问题?
2021-09-25
我正在尝试将我的 chrome 纯 JS 扩展迁移到 vuejs 版本。我所有的纯 JS 版本都可以正常工作。但是使用 vuejs 时,我在加载扩展时遇到了一个难以理解的错误。这是我的 manifest.json 和我的 vue.config.js :Manifest :{"manifest_version": 2,"name": "__MSG_appName__","version": "2.1
我想使用 Vue CLI 构建一个 Vue 库。该项目更喜欢构建的库,而不是完全构建的应用程序。库构建可以,但不能与 Vue 3 结合使用。让我详细说明一下……首先创建一个简单的 Vue 3 应用程序。类似命令vue create的构建。然后使用以下命令构建库:vue build App.vue -t lib这会生成一些编译文件,其中一个是App.umd.js。当使用 Vue 2 和以下初始化代码
我正在使用 Inertia 在 Vue JS 上实现一个列表,您可以按名称进行过滤data() {return {selectedUser: this.value,selected: null,search: '',}},computed: {userlist: function(){return this.users.filter(function(user){return user.name.
2021-07-31
我有一个国家列表,保存为配置文件country_list。该文件具有以下内容。export default {countries: ['AUSTRALIA','AUSTRIA','BELGIUM','BRAZIL','BULGARIA','CANADA','CHINA','CROATIA','CYPRUS','CZECHIA','DENMARK','ESTONIA','FINLAND']}现在,在
2021-07-09
作为刚开始使用 Vue 3 的新手,我有一个关于路由器的问题。我正在按照Vue School上的教程操作。在使用命名路由和参数之前,它似乎没问题。它在控制台中呈现一个空白页,显示Uncaught (in promise) TypeError: Cannot read property 'name' of undefined。我注意到给出的默认代码与教程略有不同,但我认为这不是主要问题。我也在论坛上
2021-06-30
我遇到这个问题,当使用 vue-router 推送路由器时出现错误。this.$router.push({ path: '/' }).catch(() => {});这是它返回的消息:app.js:43636 Uncaught TypeError: Cannot read property 'classList' of undefinedat Function.addClass奇怪的是,在另一个子
2021-06-28
这整个过程的目的是尝试从收藏夹选项卡直接进入我喜欢的课程。控制台说 slug 未定义,我不知道该怎么办。如果有人能帮助我,那就太好了。尝试了一些方法,但没有奏效,因为这不仅是我的代码试图添加一个简单的东西,而且对我来说真的很难,如果有人能帮助我,那就太好了。这是控制台中显示的内容Uncaught TypeError: Cannot read property 'slug' of undefined
2021-06-19
当我尝试在 vuejs 中更新数据字段时出现此错误。data() {return {form : useForm({imageFile : null,img_id : null,}),product_images : this.images,}},在这里,我在用户发送的发布请求成功后更新 product_images。像这样。this.form.post(url, {onStart : () =>
我用普通的 Jquery 构建了一个简单的 tensorflowjs 应用程序,它运行良好,尽管预测不是很好,但它确实有效。现在,我开始使用 Vue3 为应用程序构建 GUI,它是使用 @vue/cli 创建的。我已经通过 npm 安装了其他几个插件,例如 tailwindcss、clmtrackr,它们运行良好。现在我已经使用 npm 安装了 tensorflowjs -npm install
2021-06-03
从下面的代码中,我使用 EmailJs 库发送电子邮件,提交后会执行 alert 方法,但不会执行 change 方法。我遗漏了什么?控制台上的错误消息是Uncaught (in promise) TypeError: Cannot read property 'change' of undefinedat app.js:2755我的脚本<script>import emailjs from "e
2021-05-17
我尝试从 randomuser api 获取随机用户。代码来自我的 vue 前端。// api response{ info: { // ommited }, results: [ {//random user data} ] }// this worksasync get_random_user() {const url = "https://randomuser.me/api/";const
2021-04-28
我正在使用从 lodash 导入的 debounce,它在 main.js 中import lodash from 'lodash'Vue.prototype._ = lodash我正在使用this._.find(...),一切运行正常。但如果我使用 debounce,它不起作用。<script>export default {methods: {delay: this._.debounce(fu
2021-04-22