Uncaught SyntaxError: The requested module #39;/node_modules/.vite/vue.js?v=535663ae#39; does not provide an export named #39;default#39;(未捕获语法错误:请求的模块#39;/node_modules/.vite/vue.js?v=535663ae#39;未提供名为#39;Default#39;的导出)
问题描述
我使用的是名为griptape的js框架(用于区块链)。尝试使用VUE路由器时出现此错误。
import Vue from "vue"; //Error **does not provide an export named 'default'**
import VueRouter from "vue-router";
import Home from "../views/Home.vue";
Vue.use(VueRouter);
const routes = [
{
path: "/",
name: "Home",
component: Home,
},
{
path: "/about",
name: "About",
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () =>
import(/* webpackChunkName: "about" */ "../views/About.vue"),
},
];
const router = new VueRouter({
routes,
});
export default router;
而我的vue.d.ts
文件如下
import { CompilerOptions } from '@vue/compiler-dom';
import { RenderFunction } from '@vue/runtime-dom';
export declare function compile(template: string | HTMLElement, options?: CompilerOptions): RenderFunction;
export * from "@vue/runtime-dom";
export { }
router.d.ts
文件如下
推荐答案
我认为您正在使用Vue 3
。您应该检查您的vue-router
版本。如果您现在只运行npm i vue-router
,则版本应为";^3.5.3";。请尝试使用npm i vue-router@next
安装较新版本。
然后按如下方式导出路由器:
import {createRouter, createWebHistory} from 'vue-router'
const routes = [
{
path:'/',
name:"Home",
component:()=>import('./pages/Home.vue')
}
,
{
path:'/about',
name:"About",
component:()=>import('./pages/About.vue')
}
]
const router = createRouter({
history:createWebHistory(),
routes
})
export default router
这篇关于未捕获语法错误:请求的模块';/node_modules/.vite/vue.js?v=535663ae';未提供名为';Default';的导出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:未捕获语法错误:请求的模块';/node_modules/.vite/vue.js?v=535663ae';未提供名为';Default';的导出
基础教程推荐
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 我什么时候应该在导入时使用方括号 2022-01-01