一、使用vite快速创建脚手架
1. 使用yarn
运行安装命令:yarn create vite
2. 选择vue
vue-ts
完成安装
3. 进入vue3_ts_vite_pinia
项目,使用yarn
命令安装依赖,依赖安装完成后,使用yarn dev
启动项目
1. 使用yarn
安装vue-router@4: yarn add vue-router@4
2. src文件夹下新建router文件夹,router文件夹下新建index.ts
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
const routes: RouteRecordRaw[] = [ //注:RouteRecordRaw为内置类型
{
path: '/',
name: 'Index',
component: () => import('@/pages/index/Index.vue'),
}
]
const router = createRouter({
history: createWebHistory(),
routes,
})
export default router
3. 在main.ts中,引入router并注册
import { createApp } from 'vue'
import App from './App.vue'
import router from './router/index'
const app = createApp(App)
app.use(router)
app.mount('#app')
4. 在App.vue中设置路由展现出口
//
//
三、状态管理(Pinia配置)
Pinia 是 Vue.js 的轻量级状态管理库,也是Vue核心团队推荐的状态管理库,由于Pinia也是Vuex研发团队的产品,以及尤雨溪的加持,极大可能会替代Vuex,即使pinia的推广不太顺利也并不用过多担心,其许多使用方式很有可能会移植到Vuex5中。
相较于Vuex,Pinia上手更简单,mutations,并且actions支持同步或异步。
1. 使用yarn
安装 pinia@next:yarn add pinia@next
2. src文件夹下新建store文件夹,store文件夹下新建main.ts
import { defineStore } from 'pinia' export const useUserStore = defineStore({ id: 'user', state: () => ({ name: '用户名' }), getters: { nameLength: (state) => state.name.length, }, actions: { updataUser(data: any) { console.log(data) } } })
3. 在main.ts中,引入createPinia
import { createApp } from 'vue' import App from './App.vue' import router from './router/index' import { createPinia } from 'pinia' const app = createApp(App) app.use(createPinia()) app.use(router) app.mount('#app')
2. 设置state
//actions中使用this修改state数据
import { defineStore } from 'pinia'
export const useUserStore = defineStore({
id: 'user',
state: () => ({
name: '用户名'
}),
getters: {
nameLength: (state) => state.name.length,
},
actions: {
updataUser(newName: string) {
this.name=newName
}
}
})
import { defineStore } from 'pinia'
export const useUserStore = defineStore({
id: 'user',
state: () => ({
name: '用户名'
}),
getters: {
nameLength: (state) => state.name.length,
},
})
4.Actions使用
支持async await ,支持同一个store中action之间可以用this调用,不同store中action之间可以用hooks引入方式调用
import { defineStore } from 'pinia'
import {userOtherStore} from './otherStore'
export const useUserStore = defineStore({
id: 'user',
state: () => ({
name: '用户名'
}),
actions: {
async login(params){
const {data}=await api.login(params)
this.updataUser(data) //同一个store中action之间可以用this调用
},
updataUser(newName: string) {
this.name=newName
const otherStore=userOtherStore() //不同store中action之间可以用hooks引入方式调用
otherStore.setName(newName)
}
}
})
1. 使用`yarn`安装 axios:yarn add axios
2. src文件夹下新建service文件夹,service文件夹下新建http.ts
import axios, { AxiosRequestConfig } from 'axios'
// 设置请求头和请求路径
axios.defaults.baseURL = '/api';
// 现在,所有使用此实例的请求都将等待2.5秒,然后才会超时
axios.defaults.timeout = 2500;
axios.defaults.headers.post['Content-Type'] = 'application/json;charset=UTF-8';
// 添加请求拦截器
axios.interceptors.request.use(function (config): AxiosRequestConfig
// 在发送请求之前做些什么
config.headers.token = 'your token'
return config;
}, function (error) {
// 对请求错误做些什么
return Promise.reject(error);
});
// 添加响应拦截器
axios.interceptors.response.use(function (response) {
// 2xx 范围内的状态码都会触发该函数。
// 对响应数据做点什么
return response;
}, function (error) {
// 超出 2xx 范围的状态码都会触发该函数。
// 对响应错误做点什么
return Promise.reject(error);
});
interface ResType
code: number
data?: T
msg: string
err?: string
}
interface Http {
get
post
upload
download(url: string): void
}
const http: Http = {
get(url, params) {
return new Promise((resolve, reject) => {
axios
.get(url, { params })
.then((res) => {
resolve(res.data)
})
.catch((err) => {
reject(err.data)
})
})
},
post(url, params) {
return new Promise((resolve, reject) => {
axios
.post(url, JSON.stringify(params))
.then((res) => {
resolve(res.data)
})
.catch((err) => {
reject(err.data)
})
})
},
upload(url, file) {
return new Promise((resolve, reject) => {
axios
.post(url, file, {
headers: { 'Content-Type': 'multipart/form-data' },
})
.then((res) => {
resolve(res.data)
})
.catch((err) => {
reject(err.data)
})
})
},
download(url) {
const iframe = document.createElement('iframe')
iframe.style.display = 'none'
iframe.src = url
iframe.onload = function () {
document.body.removeChild(iframe)
}
document.body.appendChild(iframe)
},
}
export default http
3. service文件夹下新建api文件夹,做请求统一管理,api下新建login,login下新建login.ts、type.ts
import http from '@/service/http'
import { ILoginApi } from './type'
const loginApi: ILoginApi = {
login(params) {
return http.post('/login', params)
}
}
export interface DataType {
name: string
}
export interface ResType
code: number
data?: T
msg: string
err?: string
}
export interface ILoginApiParams {
id: number
}
export interface ILoginApi {
login: (params: ILoginApiParams) => Promise
}
UI组件库目前选择比较多,Naive UI是尤大大推荐的组件库,内容样式比较美观新颖,但毕竟是新组件库,Ant Design Vue是Ant Design 的 Vue 实现,用户人数较多,比较成熟,像一些目前比较厉害的开源后台vben-admin等都是使用Ant Design Vue,至于Element Plus也是刚刚开发完成,因此还是选择Ant Design Vue较为靠谱。
1. 使用yarn
安装 ant-design-vue@next:yarn add ant-design-vue@next
2. main.ts中全局注册
import { createApp } from 'vue'
import App from './App.vue'
import router from './router/index'
import { createPinia } from 'pinia'
import Antd from 'ant-design-vue';
import 'ant-design-vue/dist/antd.css';
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.use(Antd);
app.mount('#app')
3. 组件内使用
.env.development
及.env.production
文件NODE_ENV=development
VITE_APP_WEB_URL= 'YOUR WEB URL'
.env.production
NODE_ENV=production
VITE_APP_WEB_URL= 'YOUR WEB URL'
2.组件内使用环境
console.log(import.meta.env.VITE_APP_WEB_URL)
1. 配置类型别名
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
})
如果path报错,安装@types/node即可 2.引入如scss等的全局样式
export default defineConfig({
plugins: [vue()],
css: {
preprocessorOptions: {
scss: {
additionalData: '@import "@/assets/style/main.scss";'
}
}
},
})
3. 代理配置
server: {
port: VITE_PORT,
// Load proxy configuration from .env
proxy: {},
},
4. 在预构建中强制排除的依赖项。
optimizeDeps: {
// @iconify/iconify: The dependency is dynamically and virtually loaded by @purge-icons/generated, so it needs to be specified explicitly
include: [
'@iconify/iconify',
'ant-design-vue/es/locale/zh_CN',
'moment/dist/locale/zh-cn',
'ant-design-vue/es/locale/en_US',
'moment/dist/locale/eu',
],
exclude: ['vue-demi'],
},
5. build打包
build: {
target: 'es2015',
outDir: OUTPUT_DIR,
terserOptions: {
compress: {
keep_infinity: true,
// 生产环境去除 `console` `debugger` 值为布尔值
drop_console: VITE_DROP_CONSOLE,
drop_debugger: VITE_DROP_DEBUGGER
},
},
// Turning off brotliSize display can slightly reduce packaging time
brotliSize: false,
chunkSizeWarningLimit: 1500,
},