开发者问题收集
在我的repository.js中,我有以下内容:async getAllContactRequests() {return new Promise(() => {axios.get("http://127.0.0.1:8000/api/contactRequests", {headers: { "Authorization": "Bearer " + sessionStorage.getItem
我试图在另一个组件中使用一个组件。在created事件中,我可以记录此组件并返回好对象。但是由于某些原因,该组件似乎未包含在内。VueJS 不理解validation标签。有什么想法吗?<template><main><validation :validate="$v.email" :model="'email'"></validation></main></template><script>im
我正在使用 Typescript 和 Vuejs 构建应用程序。我有几个独立组件 (.vue) 文件,我正在将它们导入到 Typescript (.ts) 文件中。在 Typescript 文件中,我从 npm Vue 库导入 Vue,然后创建一个新的 Vue 来显示我的组件。我看到的错误是:Property x does not exist on type 'Vue'我的构建系统是带有 tsc
我想在我的 VueJS 应用中使用这个第三方toast组件,但它给出了错误,Unknown custom element: <toast-container> - did you register the component correctly? For recursive components, make sure to provide the "name" option.ma​​in.tsim
我有一个 Vue 组件,它需要一个 Array 类型的属性,我在使用该组件时传递了一个数组。但我仍然收到此警告。[Vue warn]: Invalid prop: type check failed for prop "columns". Expected , got Array.但是该组件运行正常,列属性中的值按预期显示。更新这是我正在做的事情父组件<template><section clas
我正在尝试使用名为 CardRenderer.vue 的组件,该组件使用对象数组渲染卡片。我一次又一次地使用同一个组件来渲染数据。我遇到此错误“[Vue 警告]:无效 prop:当我尝试从组件传递 prop 时,prop“renderData”的类型检查失败。我尝试传递不同的值和不同的类型,但没有成功。这是代码:CardRenderer.vue<template lang="html"><div>
为什么这里的this未定义?注销时单击此错误,浏览器控制台中显示TypeError: this is undefined<script lang="ts">import Vue from "vue";import { getModule } from "vuex-module-decorators";import Component from "vue-class-component";impor
在 YouTube 上的Net Ninja Vue 教程19中,我正在介绍嵌套组件,我希望使用v-for和v-bind: key显示ul列表。我一直收到以下错误,无法编译。我是 Vue 新手,那里的 Guru 能帮我解决一下吗?目前,我的vue版本是@vue/cli 4.4.6,npm是6.13.4。<template><ul><li v-for="(ninja, index) in ninjas
我有以下代码(如下),到目前为止,我所看到的是白页,控制台上没有任何错误。我想渲染带有标记的地图。我是 Vue 的初学者,也许你可以帮助我。我关注了一些关于 leaflet 的页面,类似的代码有效。App.vue<template><div id="app"></div></template><script>import Map from './components/Map.vue'export
我正在尝试在 Vue 中使用 Leaflet 地图,但一直出现错误:Uncaught Error: Map container not found.这是我的组件的样子:<template><div id="app" class="container">Map<div class="col-md-9"><div id="mapid"></div></div></div></template><sty
我在 Vue 中单击按钮时尝试添加 1 时遇到问题我创建了一个函数 sumar,我在分配给按钮的 v-on 中调用它,创建了“contador”,但出现错误。它说这是空的;我不知道为什么,因为我已经在 props 中将变量 contador 初始化为 0。<template><section class="articulos b-flex b-flex-wrap b-flex-center b-
有没有办法解决 v-bind:key="persons.id" 上未定义 id 的错误?我的视图<div v-for="reservation in reservationNameByTime" v-bind:key="reservation.id">{{reservation.id}} /** displays 1 **/<div v-for="player in reservation.Pla
在此 VueJs Slider 上获取错误“无法将未定义或 null 转换为对象”。它在这里工作http://novo.evbox.com/(它是页面上的第一个组件)。该功能有效,但我想解决控制台中的错误。有人有什么见解吗?注意:为了简洁起见,我删除了一些代码。<template><div id="vue-slider"><divid="button-toggle-container"class=
我试图从 leaflet 访问 flyTo 或 panTo,但不知何故它卡在错误Uncaught TypeError: Cannot read property 'flyTo' of null有没有指出问题可能是什么?我一直在关注这个:https://vue2-leaflet.netlify.app/faq/#how-can-i-access-the-leaflet-map-object并且我提供
我有一个全新安装的 Laravel 5.3 项目,该项目内置了示例 Vue 组件。require('./bootstrap');Vue.component('example', require('./components/Example.vue'));const app = new Vue({el: '#app'});然后我尝试在 welcome.blade.php 中添加<example></e