当前位置:   article > 正文

Vue+Vite+Element Plus基础操作

Vue+Vite+Element Plus基础操作

Vue.js 是一个流行的前端框架,‌而 Vite 是一个快速构建前端应用的新型开发服务器和构建工具,‌两者结合可以显著提升开发效率和体验。‌

Vue.js 是一个用于构建用户界面的渐进式框架,‌它易于上手且功能强大。‌Vue 的核心库只关注视图层,‌非常容易与其他库或已有项目整合。‌此外,‌Vue 也完全有能力驱动复杂的单页应用。‌Vue 的浏览器开发者工具为调试和开发提供了极大的便利,‌使得开发者可以更高效地开发和调试应用。‌

Vite,‌作为一个下一代前端开发与构建工具,‌旨在提供开箱即用的配置,‌同时具有高度的可扩展性和完整的类型支持。‌它基于原生 ES 模块提供了快速的模块热更新功能,‌使用 Rollup 打包代码,‌并预配置以输出用于生产环境的高度优化过的静态资源。‌Vite 的设计目标是解决传统构建工具在处理大型项目时遇到的性能瓶颈问题,‌通过利用浏览器对 ES 模块的原生支持和编译型语言的流行,‌提供更快的开发服务器启动速度和更高效的代码更新。‌

结合 Vue 和 Vite,‌开发者可以享受到快速的开发和构建过程,‌以及 Vue 提供的强大功能和灵活性。‌这种组合特别适合构建大型、‌复杂的前端应用,‌因为它提供了快速的反馈循环和优化的构建输出,‌从而提高了开发效率和应用程序的性能。‌此外,‌Vite 的插件系统和 API 提供了高度的自定义性,‌使得开发者可以根据项目需求轻松扩展和配置构建过程。‌

1.安装node.js

2.构建前端项目

  1. 按照提示要求进入目录cd StudentMgrFE
  2. 安装项目所需的包npm install
  3. 然后运行查看效果 npm run dev

 3.Vue3项目目录结构

  • 修改项目运行地址
  1. // vite.config.ts
  2. import { defineConfig } from 'vite'
  3. import vue from '@vitejs/plugin-vue'
  4. // https://vitejs.dev/config/
  5. export default defineConfig({
  6. plugins: [vue()],
  7. server: {
  8. host: '192.168.20.110',
  9. port: 8080,
  10. open: true,
  11. }
  12. })

  • Package.json文件 

  1. # 生产环境命令等价
  2. npm install vuex --save
  3. npm install vuex -S
  4. npm i vuex --save
  5. npm i vuex -S
  6. # 开发环境命令等价
  7. npm install vuex --save-dev
  8. npm install vuex -D
  9. npm i vuex --save-dev
  10. npm i vuex -D
  •  页面加载

  • Vue文件三个组成部分 

  1. // 接受父组件传递的变量
  2. defineProps<{ msg: string }>()
  3. // 定义基础数据类型
  4. const count = ref(0)
  5. // apps.vue 组件调用
  6. /*
  7. lang="ts"-->脚本语言使用 Ts
  8. setup-->使用关键字简化脚本
  9. */
  10. <script setup lang="ts">
  11. import HelloWorld from './components/HelloWorld.vue'
  12. import Demo from './components/Demo.vue'
  13. </script>
  14. <template>
  15. <HelloWorld msg="Vite + Vue" />
  16. <Demo />
  17. </template>
  18. // scoped 不影响其他组件样式
  19. <style scoped>
  20. </style>

 4.Vue3使用ElementPlus前端UI

  • 生产环境安装
npm install element-plus --save
  • 注册到项目中全局引入
  1. import { createApp } from 'vue'
  2. import './style.css'
  3. import App from './App.vue'
  4. import ElementPlus from 'element-plus'
  5. import 'element-plus/dist/index.css'
  6. // createApp(App).mount('#app')
  7. createApp(App).use(ElementPlus).mount('#app')
  • 简单ElementUI Plus使用实例
  1. // demo.vue
  2. <script setup lang="ts">
  3. import { ElMessage, ElMessageBox } from 'element-plus'
  4. import {
  5. Check,
  6. Delete,
  7. Edit,
  8. Message,
  9. Search,
  10. Star,
  11. } from '@element-plus/icons-vue'
  12. // 定义一个函数
  13. const queryStudent = () => {
  14. ElMessageBox.confirm(
  15. '是否开启编写?',
  16. '提示',
  17. {
  18. confirmButtonText: 'OK',
  19. cancelButtonText: 'Cancel',
  20. type: 'warning',
  21. }
  22. )
  23. .then(() => {
  24. ElMessage({
  25. type: 'success',
  26. message: '已开启',
  27. })
  28. })
  29. .catch(() => {
  30. ElMessage({
  31. type: 'info',
  32. message: '已取消',
  33. })
  34. })
  35. }
  36. </script>
  37. <template>
  38. <h1>Demo中的标题</h1>
  39. <div>
  40. <el-button :icon="Search" circle />
  41. <!-- 绑定点击事件 -->
  42. <el-button type="primary" @click="queryStudent" :icon="Edit" circle />
  43. <el-button type="success" :icon="Check" circle />
  44. <el-button type="info" :icon="Message" circle />
  45. <el-button type="warning" :icon="Star" circle />
  46. <el-button type="danger" :icon="Delete" circle />
  47. </div>
  48. </template>
  49. <style>
  50. h1 {
  51. color: blue;
  52. }
  53. </style>

5. 使用vue-router实现路由

  • 安装
npm install vue-router@4 --save

  • 新建路由匹配文件

  • 定义index.ts必要配置 
  1. // 1.导入组件 路由匹配模式 基本数据格式
  2. import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
  3. import HelloWorld from "../components/HelloWorld.vue";
  4. import Demo from "../components/Demo.vue";
  5. // 2.创建路由匹配的数据集合 --Array
  6. const routes: Array<RouteRecordRaw>= [
  7. {
  8. path: "/",
  9. // name: 'Home',
  10. component: HelloWorld,
  11. },
  12. {
  13. path: "/demo",
  14. component: Demo
  15. },
  16. ]
  17. // 3.创建一个 vue-router对象
  18. const router = createRouter({
  19. history: createWebHistory(),
  20. // history: createWebHashHistory(import.meta.env.BASE_URL),
  21. routes,
  22. })
  23. // 4.暴露接口
  24. export default router
  • 全局注册
  1. import { createApp } from 'vue'
  2. import './style.css'
  3. import App from './App.vue'
  4. import router from './router' // 导入路由文件
  5. import ElementPlus from 'element-plus'
  6. import 'element-plus/dist/index.css'
  7. // createApp(App).mount('#app')
  8. createApp(App).use(router).use(ElementPlus).mount('#app')
  • 动态匹配路由
  1. // app.vue template下添加
  2. <script setup lang="ts">
  3. // import HelloWorld from './components/HelloWorld.vue'
  4. // import Demo from './components/Demo.vue'
  5. // import Test from './components/Test.vue'
  6. </script>
  7. <template>
  8. <router-view></router-view>
  9. <!-- <div>
  10. <a href="https://vitejs.dev" target="_blank">
  11. <img src="/vite.svg" class="logo" alt="Vite logo" />
  12. </a>
  13. <a href="https://vuejs.org/" target="_blank">
  14. <img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
  15. </a>
  16. </div>
  17. <HelloWorld msg="Vite + Vue" />
  18. <Demo /> -->
  19. </template>
  20. <style scoped>
  21. .logo {
  22. height: 6em;
  23. padding: 1.5em;
  24. will-change: filter;
  25. transition: filter 300ms;
  26. }
  27. .logo:hover {
  28. filter: drop-shadow(0 0 2em #646cffaa);
  29. }
  30. .logo.vue:hover {
  31. filter: drop-shadow(0 0 2em #42b883aa);
  32. }
  33. </style>

6. 案例实现

  • 导航栏实现
  1. // 新建test.vue
  2. <script setup lang="ts">
  3. </script>
  4. <template>
  5. <div class="outer">
  6. <div class="inner">
  7. <el-menu class="el-menu-demo" mode="horizontal">
  8. <el-menu-item index="1">首页</el-menu-item>
  9. <el-menu-item index="2">电视剧</el-menu-item>
  10. <el-menu-item index="3">电影</el-menu-item>
  11. <el-menu-item index="4">综艺</el-menu-item>
  12. </el-menu>
  13. </div>
  14. </div>
  15. </template>
  16. <style scoped>
  17. .outer{
  18. width: 100%;
  19. }
  20. .inner{
  21. width: 1200px;
  22. margin: 0 auto;
  23. }
  24. </style>
  25. // index.ts 配置路由
  26. import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
  27. import Test from "../components/Tests.vue";
  28. const routes: Array<RouteRecordRaw>= [
  29. {
  30. path: "/test",
  31. component: Test
  32. },
  33. ]
  34. // app.vue入口配置
  35. <template>
  36. <router-view></router-view>
  37. </template>

  • 实现点击导航路由切换(每个页面都有导航)
  1. // index.ts
  2. import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
  3. import Test from "../components/Tests.vue";
  4. import Tv from "../components/tv.vue";
  5. // 2.创建路由匹配的数据集合 --Array
  6. const routes: Array<RouteRecordRaw>= [
  7. {
  8. path: "/test",
  9. name: 'Index',
  10. component: Test
  11. },
  12. {
  13. path: "/tv",
  14. name: 'Tv',
  15. component: Tv
  16. },
  17. ]
  18. // 3.创建一个 vue-router对象
  19. const router = createRouter({
  20. history: createWebHistory(),
  21. // history: createWebHashHistory(import.meta.env.BASE_URL),
  22. routes,
  23. })
  24. // 4.暴露接口
  25. export default router
  26. // test.vue
  27. <script setup lang="ts">
  28. </script>
  29. <template>
  30. <div class="outer">
  31. <div class="inner">
  32. <el-menu class="el-menu-demo" mode="horizontal">
  33. // 方法一定义路由
  34. <el-menu-item index="1"><router-link :to="{name:'Index'}">首页</router-link></el-menu-item>
  35. <el-menu-item index="2"><router-link :to="{name: 'Tv'}">电视剧</router-link></el-menu-item>
  36. <el-menu-item index="3">电影</el-menu-item>
  37. <el-menu-item index="4">综艺</el-menu-item>
  38. </el-menu>
  39. <div class="content">首页</div>
  40. </div>
  41. </div>
  42. </template>
  43. <style scoped>
  44. .outer{
  45. width: 100%;
  46. }
  47. .inner{
  48. width: 1200px;
  49. margin: 0 auto;
  50. }
  51. .content{
  52. width: 1200px;
  53. height: 500px;
  54. background-color: lightblue;
  55. line-height: 500px;
  56. font-size: 100px;
  57. text-align: center;
  58. }
  59. </style>
  60. // tv.vue
  61. <script setup lang="ts">
  62. </script>
  63. <template>
  64. <div class="outer">
  65. <div class="inner">
  66. <el-menu class="el-menu-demo" mode="horizontal">
  67. // 方法二匹配路由
  68. <el-menu-item index="1"><router-link to="/test">首页</router-link></el-menu-item>
  69. <el-menu-item index="2"><router-link to="/tv">电视剧</router-link></el-menu-item>
  70. <el-menu-item index="3">电影</el-menu-item>
  71. <el-menu-item index="4">综艺</el-menu-item>
  72. </el-menu>
  73. <div class="content">电视剧</div>
  74. </div>
  75. </div>
  76. </template>
  77. <style scoped>
  78. .outer{
  79. width: 100%;
  80. }
  81. .inner{
  82. width: 1200px;
  83. margin: 0 auto;
  84. }
  85. .content{
  86. width: 1200px;
  87. height: 500px;
  88. background-color: lightblue;
  89. line-height: 500px;
  90. font-size: 100px;
  91. text-align: center;
  92. }
  93. </style>
  • 简便写法在app.vue中定义
  1. // app.vue
  2. <script setup lang="ts">
  3. </script>
  4. <template>
  5. <div class="outer">
  6. <div class="inner">
  7. <el-menu class="el-menu-demo" mode="horizontal">
  8. <el-menu-item index="1"><router-link :to="{name:'Index'}">首页</router-link></el-menu-item>
  9. <el-menu-item index="2"><router-link :to="{name: 'Tv'}">电视剧</router-link></el-menu-item>
  10. <el-menu-item index="3">电影</el-menu-item>
  11. <el-menu-item index="4">综艺</el-menu-item>
  12. </el-menu>
  13. <router-view></router-view>
  14. </div>
  15. </div>
  16. </template>
  17. <style scoped>
  18. .outer{
  19. width: 100%;
  20. }
  21. .inner{
  22. width: 1200px;
  23. margin: 0 auto;
  24. }
  25. </style>
  1. // test.vue
  2. <script setup lang="ts">
  3. </script>
  4. <template>
  5. <div class="content">首页</div>
  6. </template>
  7. <style scoped>
  8. .content{
  9. width: 1200px;
  10. height: 500px;
  11. background-color: lightblue;
  12. line-height: 500px;
  13. font-size: 100px;
  14. text-align: center;
  15. }
  16. </style>
  17. // tv.vue
  18. <script setup lang="ts">
  19. </script>
  20. <template>
  21. <div class="content">电视剧</div>
  22. </template>
  23. <style scoped>
  24. .content{
  25. width: 1200px;
  26. height: 500px;
  27. background-color: lightblue;
  28. line-height: 500px;
  29. font-size: 100px;
  30. text-align: center;
  31. }
  32. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/952175
推荐阅读
相关标签
  

闽ICP备14008679号