vite+vue3+vue-router+vuex

vite是类似webpack的前端构建工具,基于浏览器 ES module ,
优点:

快速的冷启动
即时的模块热更新
真正的按需编译

由于npm默认会安装最新的依赖,推荐使用yarn安装
创建项目:
yarn create vite-app
yarn install

生成的项目结构如下:在这里插入图片描述
可以看到根目录有一个index.html文件,不同于webpack需配置入口文件,vite默认将跟目录的index作为入口。
运行npm run dev
结果展示:
在这里插入图片描述
添加vue-router:
yarn add vue-router@next
在src下的router下新建router.js,添加代码:

import { createRouter,createWebHistory} from "vue-router";
// 路由信息
const routes = [
    {
        path: "/index",
        name: "Index",
        component:  () => import('../views/index/index.vue'),
    },
    {
        path: "/test",
        name: "test",
        component:  () => import('../views/index/test.vue'),
    },
];
// 导出路由
const router = createRouter({
    history: createWebHistory(),
    routes
});

export default router;

注意:路由中路径不加.vue可能找不到页面
添加vue-router:
yarn add vuex@next
在src下的store下新建index.js,添加代码:

import { createStore } from 'vuex'
const store = createStore({
  state: {

  },
  getters: {

  },
  mutations: {

  },
  actions: {

  },
  modules: {

  }
})
export default store

在main.js中引用

const app = createApp(App);
app.use(router)
app.use(store)
app.mount('#app')

在App.vue中加入<router-view></router-view>标签,使用<router-link to="/index">index</router-link> 尝试一下
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值