我已经创建了登录页面。路由器拦截请求并验证用户是否经过身份验证。商店维护用户是否登录。调试时我进入了 auth.js"store is not defined"我也尝试在导入中使用相对路径而不是 @。路由器代码片段 import auth from '@/services/auth';...router.beforeEach((to, from, next) => {if (to.mat
2017-11-24
我尝试了所有变体,但我不明白为什么我不能包含这个库:jkanban.js<template><div id="kanban"></div></template><script>import jKanban from '../components/jkanban.js'export default {}</script>我在控制台中收到错误:Cannot set property 'jKanban'
2019-03-30
我从著名的 ApiPokemon 收到此调用:https://pokeapi.co/api/v2/pokemon?limit=151一旦我获得该数据,我想将其通过另一种方法(_getPokemonData)传递,以映射每个 Pokémon 的完整数据。但是,当我创建此 VueJS 方法时,我收到此错误:未捕获(在承诺中)TypeError:无法读取未定义的属性(读取“_getPokemonData
2022-06-21
我在成功登录后将令牌存储在 vuex 存储中,如下所示:axios.post('/api/auth/doLogin.php', params, axiosConfig).then(res => {console.log(res.data); // tokenthis.$store.commit('login', res.data);})axiosConfig 是一个文件,其中我仅设置了 baseU
2017-12-22
我创建了 axios 拦截器,它负责在每个请求发送到我的 rest API 之前添加令牌。import axios from 'axios';import { store } from '../store/store';export default function execute() {axios.interceptors.request.use(function(config) {const
2017-12-27
我有一个 vuejs 组件,它为我带来了一个选择框。第一步我可以选择代理或组,但要查看第二个选择,我需要先选择代理或组。因此,当用户不选择第一个选择选项时,我想隐藏第二个选择,但在我的计算属性中错误是:渲染错误:“TypeError:无法读取未定义的属性‘length’”我的模板: <template><div :class="$style['atribution__container']"><
2021-08-24
我正在练习 Vue JS,想了解如何将数据从子组件传递到发出事件的父组件。这是我的父组件 BookList:<template><div class="booklist"><BookForm @book-is-created="onClickForm" /><table v-for="book in books"><tr><th> Author </th><th> Title </th><th>
2017-05-20
我有一个组件contacts-list的子组件contactView,它本身也是一个子组件。问题是我无法动态更改此组件的内容html<div id="wrapper"><component :is="currentView" keep-alive></component></div>jsvar IndexPage = Vue.component('index-page', {template: '
2017-06-26
我是 vue.js 的新手,我尝试将一个值传递给子组件。HTML<div id="example"><my-component v-bind:data="parentData"></my-component></div>JSVue.component('my-component', {props: ['data'],template: '<div>Parent component with dat
2017-11-16
我有一个router-link,用于导航到我的一个组件。它还传递一个参数,然后在我的组件中设置该参数created() {this.sentData = this.$route.params.sentData;}当我导航到该页面时,我可以打印出已发送的数据,还可以看到它是在我的 Vue 控制台中设置的。所以这一切都很好。在此页面上,我使用的是vue-simple-uploader。只是一个非常简单
2019-01-19
我有一个vue组件,即page.vue。我有一个card card的孩子vue组件。尝试在内部注入数据在页面组件的数据功能中。page.vue522039861card.vue0096344432<< p>我希望该卡还可以从其他组件中重新使用。需要将数据注入到显示位置的卡中。
2019-02-19
我正在使用 Vue.js 和 Laravel 创建一个纸牌游戏。我想使用 Vue.js 将remaining_cards的值从父级 (Card.vue) 传递给子级 (Footer.vue)。因此,当remaining cards的值更新时,即使页脚中显示的值也会更新。Card.vue:<template><div><app-header></app-header><div class="row
2020-04-22
我在使用 VueJS Laravel 时遇到了这个问题这是我的 Home.vue<template><table><tr v-for="models in model.data">{{models.nom}}</tr></table></template><script>import axios from 'axios'export default{data() {return {model: {
我有一个带有自定义输入组件的应用,我试图在保存时向父组件发出更改事件,并通过提交/分派将这些值发送到 $store。我确认父组件可以在我之前调试组件时接收这些值(正在检索最初从此应用中的随机器生成的相同值,并且不明白为什么我会收到此错误:[Vue warn]: Error in v-on handler: "TypeError: Cannot read properties of undefine
2022-03-06
我正在使用 vuejs CLI 版本 3,并使用 package.json 中的这个目标构建我的库vue-cli-service build --report-json --target lib --name components src/appup-components.js这个库使用了很多其他外部库,例如 bootstrap-vue、axios 和 handlebars 等等。我的测试程序使用
2018-07-28