我在Vue.js 3项目(option API)上初始化了QuillJS编辑器,以下是组件中的代码:<script>import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'import Quill from 'quill'export default {name: 'AppChatContainer',components: {
2024-03-20
我正在使用 Ubuntu。我按照此文档安装 deno-vuehttps://docs.deno.com/runtime/tutorials/how_to_with_npm/vue我遇到了奇怪的错误。Task dev deno run -A --node-modules-dir npm:viteerror: Uncaught (in promise) TypeError: Cannot read p
已编辑:阅读 @Ali Bahrami 的回答后我在 Vue 3 项目中使用vue-google-autocomplete。它运行良好,提供地址并允许我选择一个地址,我可以选择所选地址并将其保存到数据库中。这是<vue-google-autocomplete>的代码><vue-google-autocompleteref="autoCompleteAddress"id="location"clas
2023-07-14
我刚刚使用 Vue 和 laravel 设置了 Intertia,但似乎无法加载页面,我遇到了此错误这是设置app.jsimport { createApp, h } from 'vue'import { createInertiaApp } from '@inertiajs/inertia-vue3'createInertiaApp({resolve: async (name) => {cons
我不明白为什么我一直收到此错误。请帮忙。*** --------------------------------------------* AdminLTE CardRefresh.js* License MIT* --------------------------------------------*/import $ from 'jquery'/*** Constants* ========
2023-02-06
我正在尝试动态创建路由,但不幸的是我没有成功,而且使用 Vuejs 3 无法实现import { createRouter, createWebHistory } from "vue-router";import TopMenu from "../layouts/top-menu/Main.vue";import hosts from '@/utils/hosts';import Login fr
2023-02-04
我试图从 Firestore 获取一条记录以显示在 Vue.js 中。我正在使用 VueFire 和此处的指南。<script setup>import { initializeApp } from 'firebase/app'import { getFirestore , doc } from "firebase/firestore";import { useDocument } from 'v
2022-12-25
在我的 vue3 应用程序中使用 VueQuill,尝试显示 html 字符串时收到以下控制台错误 -我的代码 -<template><div class=""><QuillEditor v-model:content="data" contentType="html" /></div></template><script>import { QuillEditor } from '@vueup/v
2022-12-20
我在 vue 中创建了一个变量,其值为data() {return {plans: [],}稍后会向 Plans 提供推送的对象。当我在 js 中打印该对象时,它会给出{id: 'filler', name: 'Premium', priceId: 'filler', price: '10000'>。我还可以使用console.log(this.plans[1]['name'])专门获取名称,
2022-12-14
我有以下(atom)输入组件 Element UI(Element Plus for vue 3)作为基础组件。atom/input/index.vue<template><el-form-item :label="label"><ElInput:value="modelValue"@input="$emit('update:modelValue', handleInputChange($even
2022-11-28
我正在尝试创建一个用户个人资料编辑页面,一旦您登录,您就会被路由到此页面,然后索引将返回您的唯一个人资料,而不是所有人的个人资料,但我一直收到此错误未捕获(在承诺中)TypeError:无法读取 null 的属性(读取“uid”)。我查找了一些可能的原因,用户已登录,我没有使用异步代码,我不知道问题是什么,我不确定 uid 是否在函数运行之前没有通过,或者可能是什么?这是我在应该显示配置文件的页面
2022-11-26
控制台错误:执行已安装钩子期间出现未处理的错误未捕获(在承诺中)TypeError:无法读取未定义的属性(读取“split”)它似乎可以正常工作,直到遇到没有大陆数据的组。这对我来说看起来像是问题,但我不知道如何解决它。此外,如果可能的话,我希望删除 JSO 中所有文件的重复项和结尾逗号。有没有更好的方法可以将其作为一个函数来完成?任何帮助都非常感谢JSON"response": [{"group
2022-10-06
首先我要说的是,我还有很多东西需要学习。我讨厌寻求帮助,但我翻遍了好几页寻找答案却毫无收获。我确信这个问题很简单,但有人能解释一下我做错了什么吗?我的 Three JS atom 加载得很好。我没有遇到任何问题,直到我导航到另一个页面(NuxtLink)然后返回此页面。它抛出了这个错误:Uncaught (in promise) TypeError: Cannot read properties
2022-09-26
嗨,我希望有人能帮助我。我想在输入特定序列后立即重定向到其他页面。我在控制台中收到“它有效”但不会重定向。我收到错误消息"Uncaught TypeError: Cannot read properties of undefined (reading'$router')"这是我的代码<script>export default {head() {return {script: [{src: "js
2022-09-08
我的组件出现错误。有人能帮忙解决这个问题吗?我在 Vue 3 版本中工作。出现错误:“未捕获(在承诺中)TypeError:无法读取未定义的属性(读取“计数器”)”有人有什么见解吗?这是我的代码Pinia Store:import { ref, computed } from "vue"import { defineStore } from "pinia"export const useCount
2022-09-07