• 【Vue】如何搭建SPA项目--详细教程


                                                    🎬 艳艳耶✌️:个人主页

                                                   🔥 个人专栏 :《Spring与Mybatis集成整合》《springMvc使用》

                                                    ⛺️ 生活的理想,为了不断更新自己 !
     

    目录

    1.什么是vue-cli

     2.安装

     2.1.创建SPA项目

    2.3.一问一答模式答案

     3.运行SPA项目

    3.1.导入项目

    3.2.运行项目 

    4.基于SPA项目完成路由

    4.1.案例实操

    5.基于SPA项目完成嵌套路由

    5.1.案例实操

    5.2.效果展示


    1.什么是vue-cli

          Vue CLI是一个基于Vue.js的官方脚手架工具,用于快速启动、构建和管理Vue.js项目。它提供了一套交互式的命令行界面,可以帮助开发者快速创建一个新的Vue项目,并集成了常用的开发工具和配置,比如代码打包、开发服务器、热重载等等。使用Vue CLI,开发者可以更加高效地进行Vue.js项目开发,节省了配置的时间和精力。同时,Vue CLI还支持插件系统,可以通过插件扩展功能,满足不同项目的需求。总之,Vue CLI是Vue.js开发的必备工具之一。

     2.安装

     2.1.创建SPA项目

               vue init webpack   项目名  

    效果如下图:

    创建SPA项目,成功之后会出现9个问题,做出回答即可创建完成

    2.3.一问一答模式答案

    九个问题:

     1.Project name:项目名,默认是输入时的那个名称spa1,直接回车

     2.Project description:项目描述,直接回车

    3.Author:作者,随便填或直接回车

    4.Vue build:选择题,一般选第一个

            4.1Runtime + Compiler: recommended for most users//运行加编译,官方推荐,就选它了

            4.2Runtime-only: about 6KB lighter min+gzip, but templates (or any Vue-specific HTML) are ONLY allowed in .vue files  - render functions are required elsewhere//仅运行时,已经有推荐了就选择第一个了

    5.Install vue-router:是否需要vue-router,Y选择使用,这样生成好的项目就会有相关的路由配置文件

    6.Use ESLint to lint your code:是否用ESLint来限制你的代码错误和风格。N  新手就不用了,但实际项目中一般都会使用,这样多人开发也能达到一致的语法

    7.Set up unit tests:是否安装单元测试 N

    8.Setup e2e tests with Nightwatch?:是否安装e2e测试  N

    9.Should we run `npm install` for you after the project has been created? (recommended) (Use arrow keys)

               > Yes, use NPM                    

                 Yes, use Yarn

                 No, I will handle that myself     //选择题:选第一项“Yes, use NPM”是否使用npm install安装依赖

    全部选择好回车就进行了生成项目,出现如下内容表示项目创建完成,如图:

     3.运行SPA项目

    3.1.导入项目

    打开我们的HBuilderX➡右击导入➡从本地目录导入➡找到我们的创建SPA项目选择后导入

    3.2.运行项目 

    • 回到我们的cmd命令窗口输入cd 项目名

    • 输入npm run dev运行

    • 得到spa的访问路径复制到浏览器访问即可

    4.基于SPA项目完成路由

    首先我们先简单认识一下SPA的项目

    4.1.案例实操

    •  引入依赖库已经自动生成了

    • 定义组件

    仿造SPA的项目进行定义,在src下的components进行创建。

     创建Home.vue

    1. <template>
    2. <div>
    3. 我是商品首页
    4. div>
    5. template>
    6. <script>
    7. export default {
    8. name: 'Home',
    9. data () {
    10. return {
    11. msg: 'Welcome to Your Vue.js App'
    12. }
    13. }
    14. }
    15. script>
    16. <style>
    17. style>

    再创建About.vue  

    1. <template>
    2. <div>
    3. 我是关于站长
    4. div>
    5. template>
    6. <script>
    7. export default {
    8. name: 'About',
    9. data () {
    10. return {
    11. msg: 'Welcome to Your Vue.js App'
    12. }
    13. }
    14. }
    15. script>
    16. <style>
    17. style>
    • 定义路由与配置路由路径

    找到router下面的index.js进行添加路由与配置路由路径

    1. import Vue from 'vue'
    2. import Router from 'vue-router'
    3. import HelloWorld from '@/components/HelloWorld'
    4. import Home from '@/components/Home'
    5. import About from '@/components/About'
    6. Vue.use(Router)
    7. export default new Router({
    8. routes: [{
    9. path: '/',
    10. name: 'Home',
    11. component: Home
    12. }, {
    13. path: '/Home',
    14. name: 'Home',
    15. component: Home
    16. }, {
    17. path: '/About',
    18. name: 'About',
    19. component: About
    20. }]
    21. })
    • 定义触发路由的按钮

    找到App.js定义路由触发的按钮,并修改

    1. <template>
    2. <div id="app">
    3. <router-link to="/Home">首页router-link>
    4. <router-link to="/About">商品router-link>
    5. <router-view/>
    6. div>
    7. template>
    8. <script>
    9. export default {
    10. name: 'App',
    11. }
    12. script>
    13. <style>
    14. #app {
    15. font-family: 'Avenir', Helvetica, Arial, sans-serif;
    16. -webkit-font-smoothing: antialiased;
    17. -moz-osx-font-smoothing: grayscale;
    18. text-align: center;
    19. color: #2c3e50;
    20. margin-top: 60px;
    21. }
    22. style>

    效果展示:

    5.基于SPA项目完成嵌套路由

    5.1.案例实操

    • 定义组件

    先在我们的About.vue写好触发的按钮

    1. <template>
    2. <div>
    3. <router-link to="/AboutMe">关于名称router-link>
    4. <router-link to="/AboutWebsite">关于商品价格router-link>
    5. <router-view>router-view>
    6. div>
    7. template>
    8. <script>
    9. export default {
    10. name: 'About',
    11. data () {
    12. return {
    13. msg: 'Welcome to Your Vue.js App'
    14. }
    15. }
    16. }
    17. script>
    18. <style>
    19. style>

    再创建AboutMe.vue

    1. <template>
    2. <div>
    3. 商品上架
    4. 炸鸡
    5. 薯条
    6. 可乐
    7. div>
    8. template>
    9. <script>
    10. export default {
    11. name: 'AboutMe',
    12. data () {
    13. return {
    14. msg: 'Welcome to Your Vue.js App'
    15. }
    16. }
    17. }
    18. script>
    19. <style>
    20. style>

    再创建AboutWebsite.vue

    1. <template>
    2. <div>
    3. 商品价格
    4. div>
    5. template>
    6. <script>
    7. export default {
    8. name: 'AboutWebsite',
    9. data () {
    10. return {
    11. msg: 'Welcome to Your Vue.js App'
    12. }
    13. }
    14. }
    15. script>
    16. <style>
    17. style>
    • 定义路由与配置路由路径

    找到router下面的index.js进行添加路由与配置路由路径

    1. import Vue from 'vue'
    2. import Router from 'vue-router'
    3. import HelloWorld from '@/components/HelloWorld'
    4. import Home from '@/components/Home'
    5. import About from '@/components/About'
    6. import AboutMe from '@/components/AboutMe'
    7. import AboutWebsite from '@/components/AboutWebsite'
    8. Vue.use(Router)
    9. export default new Router({
    10. routes: [{
    11. path: '/',
    12. name: 'Home',
    13. component: Home
    14. }, {
    15. path: '/Home',
    16. name: 'Home',
    17. component: Home
    18. }, {
    19. path: '/About',
    20. name: 'About',
    21. component: About,
    22. children: [{
    23. path: '/AboutMe',
    24. name: 'AboutMe',
    25. component: AboutMe
    26. }, {
    27. path: '/AboutWebsite',
    28. name: 'AboutWebsite',
    29. component: AboutWebsite
    30. }]
    31. }]
    32. })

    5.2.效果展示

                                       到这里我的分享就结束了,欢迎到评论区探讨交流!!

                                                  如果觉得有用的话还请点个赞吧 💖

  • 相关阅读:
    【Unity】VR开发基础1-工具准备-下载Unity
    深入理解Kotlin协程
    3. Spring Boot starter入门
    使用EL表达式时,PropertyNotFoundException异常的解决过程
    引领办公新潮流,乐歌M9M升降办公电脑台——让工作更轻松
    一文了解Linux内核网络设备驱动
    C语言入门Day_27 开发环境
    概念回顾:负载均衡、四层负载均衡、七层负载均衡
    Atomic Mail Sender 9.6.X 中文版Crack
    写了个牛逼的日志切面,甩锅更方便了
  • 原文地址:https://blog.csdn.net/2301_76988707/article/details/133146622