我对 Vuejs 还比较陌生,一段时间以来我一直被以下错误困扰:(页面加载时出现)Uncaught TypeError: Cannot redefine property: $router at Function.defineProperty () at Function.install (VM2179 vue-router.esm.js:526) at Function.Vue.use (
2018-09-06
我正在开发一个基于 firebase 的 vue 应用程序,该应用程序应在成功登录后将用户重定向到主页。单击登录后,我在控制台中收到 howewer 无法读取未定义的属性“$router”错误。我已经尝试在登录组件上从“。/router”导入路由器,但没有成功。main.jsimport Vue from "vue";import firebase from "firebase";import A
2019-04-22
我正在检查 Vue 及其路由器组件,但在使用路由器组件时遇到了一些问题。控制台中的错误如下:Uncaught ReferenceError: router is not defined大家好,我正在将 Vue 和 VueRouter 导入index.html,并尽力阅读文档以初始化路由器,但似乎无法正常工作。在index.html中:<script type="module" src="/asse
2019-08-09
我正在使用 vue js 3,但出现此错误。我尝试使用路由器。我的 main.js 文件在这里:import { createApp } from 'vue'import App from './App.vue'import VueRouter from 'vue-router' // i added thisimport Vue from 'vue'; // and thisVue.us
2021-06-11
http://localhost:3000/apartamentai?filter[city]=Vilniusimport { ref, onMounted } from 'vue';import { useRouter, useRoute } from 'vue-router';export default {setup() {const router = useRouter();const r
2021-10-08
因此,如果 api 调用返回状态 422,我会尝试将用户重定向到不同的路由。但是我收到错误TypeError: Cannot read properties of undefined (reading '$router')我的 routes.js:{path: '/dashboard',component: Dashboard,name: 'Dashboard',beforeEnter: (to,
2021-10-21
我是 Vue.js 的新手,我为用户创建了一个简单的表单并使用 API 存储数据。提交时我调用此函数:setup(props, { emit }) {const blankData = {customer: '',template: '',rate: '',property_from: '',property_to: '',move_date: '',num_days: '',token: '',
2021-11-22
我有类似这样的代码。 new Vue({el:'#app',data:{cars:[{name:'',make:''}]},methods:{addToArray(nameOfTheArray){ //here nameOfTheArray is the string "cars"//so here I have to do something like thisthis.cars.push({
2018-03-16
我正在尝试使用vue-native-websocket,并且wss是动态的,因为它需要访问令牌。所以我有这个:import VueNativeSock from 'vue-native-websocket';Vue.use(VueNativeSock, this.monitor);export default {created() {this.$options.sockets.onmessage
2018-06-02
我正在尝试创建一个 JSON 字符串,然后使用vue-qrcode-component将其转换为 QRCode。这是我创建字符串的地方:this.qrCode = "{‘type’:’serialNumber’,’id’:25434,’stock_id’:736,’stock_order_id’:’655’}";然后在模板中:<qr-code :text="qrCode"></qr-code>但是
2018-11-07
要求所有 html 元素都在 JSON 文件中定义并在模板中使用。有一个函数 - “markComplete”,需要在复选框更改时触发。代码模板:<template><span v-html="htmlContent"></span></template><script>data(){return{htmlContent: "<input type='checkbox' v-on:change='
2019-02-10
我正在使用 vue js,并尝试使用 props 从对象调用值。我有此代码来调用 prop<HeroAppearance:eyeColor="HeroInfo.appearance.eye-color":gender="HeroInfo.appearance.gender":hairColor="HeroInfo.appearance.hair-color":height="HeroInfo.ap
2020-06-11
为什么filter不能与this.userId一起使用,而与硬代码值“admin”一起使用?我该如何修复这个问题?computed: {UidMessages: function() {return this.Messages.filter(function(m) {return m.to == this.userId;})}},而且它确实有效 =>computed: {AMesseg: func
2020-08-10
嗨,我正在尝试在 VueJs 中动态设置 div 的样式。但面临这样一个问题:this.currentProgressLevel未应用于 currentStyle 对象内的 width 属性。我附上了我正在使用的代码的屏幕截图。当我使用${this.currentProgressLevel *75}px时,width 属性不起作用。为什么它可能不起作用?当我手动将this.currentProgr
2020-11-07
在 Vue.js 2 中,我想将字符串转换为函数调用,以便将其设置为事件处理程序。我相信这将非常实用,特别是在基于对象列表动态创建大量元素(例如按钮)时。new Vue({el: "#app",data: {myArray: [{ value: 1, fn: "firstMethod" },{ value: 2, fn: "secondMethod" },],},methods: {firstMe
2021-09-24