Vue3创建 vite + vue3 + Ant Design Vue 项目
Posted 嘻嘻的妙妙屋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue3创建 vite + vue3 + Ant Design Vue 项目相关的知识,希望对你有一定的参考价值。
搭建脚手架
创建项目:
然后按照它的指示运行项目
配置文件
安装构建 vue-router:
npm i vue-router@next
创建 router/index.js 文件:
import createRouter, createWebHistory from 'vue-router'
const routes = [
path: '/',
name: 'Home',
// 按需加载
component: () => import('../views/Home.vue')
]
const router = createRouter(
history: createWebHistory(process.env.BASE_URL),
routes
)
export default router
安装构建 vuex
npm i vuex@next
创建 store/index.js 文件
import createStore from 'vuex'
export default createStore(
state:
,
mutations:
,
actions:
,
modules:
)
在 main.js 中使用 router 和 store:
import createApp from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
// 挂载实例
const app = createApp(App)
app.use(store)
app.use(router)
app.mount('#app')
创建 views/Home.vue 文件:
<template>
<div class="home">首页</div>
</template>
<script>
export default
name: 'Home',
components: ,
;
</script>
<style scoped>
</style>
更改 App.vue 文件:
<template>
<div id="app">
<router-view/>
</div>
</template>
<style>
html, body, #app
width: 100%;
height: 100%;
</style>
使用 vite 安装 vue3 时,如果使用了 process.env,会遇到 process 未定义的情况,原因是 process.env 已经被移除了。解决办法是在 vite.config.ts 中增加 define:
import defineConfig from 'vite'
// ...
export default defineConfig(
// ...
define:
'process.env':
)
运行项目看看
npm run dev
CSS 重置
在 public 目录下新建一个 css 文件夹,在 public/css 目录下新建 reset.css,把浏览器自主设置的样式去掉;
代码网址:CSS Tools: Reset CSS
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section
display: block;
body
line-height: 1;
ol, ul
list-style: none;
blockquote, q
quotes: none;
blockquote:before, blockquote:after,
q:before, q:after
content: '';
content: none;
table
border-collapse: collapse;
border-spacing: 0;
然后在 index.html 的 head 标签中引用:
<link rel="stylesheet" href="./public/css/reset.css">
安装 Ant Design Vue
在项目目录终端输入一下命令:
npm install ant-design-vue@next --save
在 main.js 文件中引入:
import createApp from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import Antd from 'ant-design-vue'
import 'ant-design-vue/dist/antd.css'
const app = createApp(App);
app.config.productionTip = false;
app.use(store)
app.use(router)
app.use(Antd);
app.mount('#app');
引入本地图片
将图片放置在 src/static 文件中引用即可:
以上是关于Vue3创建 vite + vue3 + Ant Design Vue 项目的主要内容,如果未能解决你的问题,请参考以下文章
vue3 + vite + ts + antdv 搭建后台管理基础框架