vite-template 模板

更新时间:20210807
vite 中台项目模板
涉及依赖:vite vue-route veux sass element-plus
vite中文文档:https://cn.vitejs.dev/guide/
element-plus:https://element-plus.gitee.io/#/zh-CN/component/quickstart
vue-route v4.x:https://next.router.vuejs.org/zh/
veux v4.x:https://next.vuex.vuejs.org/zh/index.html

1. 创建vite项目

# npm 6.x
npm init @vitejs/app my-vue-app --template vue

# npm 7+, extra double-dash is needed:
npm init @vitejs/app my-vue-app -- --template vue

# yarn
yarn create @vitejs/app my-vue-app --template vue

2. 拉取依赖

yarn
npm i

3. 安装vue-router

  • 查看 vue-router 版本:
yarn info vue-router versions
  • 直接安装最新版 vue-router:
yarn add vue-router@4.0.6
  • 在 src 目录下创建以下目录:
- src
  |- router
  |  |- index.js
  |- views
     |- Home.vue
     |- Contact.vue
  • 在 index.js 中添加如下代码:
import { createRouter, createWebHistory } from 'vue-router'
import Home from "@/views/Home.vue";

const router = createRouter({
  /** 配置页面切换滚动条置顶 */
  scrollBehavior(to, from, savedPosition) {
    if (savedPosition) {
      return savedPosition
    } else {
      return { top: 0 }
    }
  },
  history: createWebHistory(),
  routes: [
    {
      path: '/',
      redirect: '/home'
    },
    {
      path: '/home',
      component: Home
    }
  ]
})

export default router

// {
//   path: '/vuex',
//   component: () => import('../views/Vuex.vue')
// }
  • 在 main.js 引用:
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'

const app = createApp(App)
app.use(router).mount('#app')
  • 在 App.vue 展示
  <router-view />

4. 安装vuex

  • 查看vuex版本
yarn info vuex versions
  • 安装最新版vuex
yarn add vuex@4.0.2
  • 配置vuex
创建src/store/index.js,配置vuex
import { createStore } from 'vuex'
export default createStore({
  state: {
    name: 'zhagnsan'
  }
})
  • main.js 引用
import { createApp } from 'vue'
import App from './App.vue'

import store from './store/index'

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

5. 安装element-plus

安装
yarn add element-plus
完整引用
import { createApp } from 'vue'
import ElementPlus from 'element-plus';
import 'element-plus/lib/theme-chalk/index.css';
import App from './App.vue';

const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')

6. 安装sass

yarn add sass -D

6. 配置vite.config.js

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
const path = require('path')

// https://vitejs.dev/config/
export default defineConfig({
  base: '/',
  build: {
    outDir: '../target'
  },
  // 路径别名
  resolve: {
    alias: {
      '@': path.join(__dirname, 'src')
    }
  },
  server: {
    host: '0.0.0.0',
    port: 9295,
    open: false,
    https: false,
    proxy: {}
  },
  plugins: [vue()],
  css: {
    // sass预处理
    // preprocessorOptions: {
      // scss: {
        // additionalData: `
          // @import "@/assets/scss/colorDeploy.scss";
          // @import "@/assets/scss/mixinDeploy.scss";
        // `
      // }
    // }
  }
})
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容