vue-cli搭建SPA項目


1. 什麼是vue-cli?
vue-cli是vue.js的腳手架,用於自動生成vue.js+webpack的項目模板,建立命令以下:
vue init webpack xxx vue

注1:xxx 爲本身建立項目的名稱
注2:必須先安裝vue,vue-cli,webpack,node等一些必要的環境node


2. 安裝vue-cli
npm install -g vue-cli
npm install -g webpackwebpack

注1:安裝成功後,會出現以下文件
D:\initPath
node-v10.15.3-win-x64
node_global
vue
vue.cmd
vue-init
vue-init.cmd
vue-list
vue-list.cmd
注2:安裝完成以後打開命令窗口並輸入 vue -V(注意這裏是大寫的「V」),若是出現相應的版本號,則說明安裝成功。web

 

 

3. 使用腳手架vue-cli(2.X版)來構建項目
## 步驟一:使用腳手架建立項目骨架
## 此步驟可理解成:使用eclipse建立一個maven的web項目
cmd #打開命令窗口
d: #切換到d盤
cd d:\temp #進入d:\temp目錄
vue init webpack spa1 #此命令用於建立SPA項目,它會在當前目錄生成一個以「spa1」命名的文件夾
#spa1即爲項目名,項目名不能用中文或大寫字母,而後終端會出現「一問一答」模式(見注2)

注1:cmd命令行窗口顯示中文亂碼,可能是由於cmd命令行窗口字符編碼不匹配致使
修改cmd窗口字符編碼爲UTF-8,命令行中執行:chcp 65001
切換回中文:chcp 936
這兩條命令只在當前窗口生效,重啓後恢復以前的編碼。vue-router

 

注2:「一問一答」模式
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安裝依賴vue-cli

所有選擇好回車就進行了生成項目,出現以下內容表示項目建立完成
# Project initialization finished!
# ========================

實在不會選,就回車選擇「默認」或是選擇「N」不安裝 npm

 

vue項目結構說明

build文件夾 這個文件夾主要是進行webpack的一些配置
webpack.base.conf.js webpack基礎配置,開發環境,生產環境都依賴
webpack.dev.conf.js webpack開發環境配置
webpack.prod.conf.js webpack生產環境配置
build.js 生產環境構建腳本
vue-loader.conf.js 此文件是處理.vue文件的配置文件json

config文件夾
dev.env.js 配置開發環境
prod.env.js 配置生產環境
index.js 這個文件進行配置代理服務器,例如:端口號的修改

node_modules文件夾 存放npm install時根據package.json配置生成的npm安裝包的文件夾服務器

src文件夾 源碼目錄(開發中用得最多的文件夾)
assets 共用的樣式、圖片
components 業務代碼存放的地方,裏面分紅一個個組件存放,一個頁面是一個組件,一個頁面裏面還會包着不少組件
router 設置路由
App.vue vue文件入口界面
main.js 對應App.vue建立vue實例,也是入口文件,對應webpack.base.config.js裏的入口配置 app

static文件夾 存放的文件不會通過webpack處理,能夠直接引用,例如swf文件若是要引用能夠在webpack配置
對swf後綴名的文件處理的loader,也能夠直接將swf文件放在這個文件夾引用

package.json 這個文件有兩部分是有用的:scripts 裏面設置命令以及在dependencies和devDependencies中,
分別對應全局下載和局部下載的依賴包

導入項目

 

找到config中index.js修改端口號

 

index.js

import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'
import Home from '@/components/Home'
import About from '@/components/About'
import AboutMe from '@/components/AboutMe'
import AboutWebSite from '@/components/AboutWebSite'

Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'Home',
      component: Home
    },
         {
          path: '/Home',
          name: 'Home',
          component: Home
        },
         {
          path: '/About',
          name: 'About',
          component: About,
            children:[
                 {
                  path: '/AboutMe',
                  name: 'AboutMe',
                  component: AboutMe
                },
                 {
                  path: '/AboutWebSite',
                  name: 'AboutWebSite',
                  component: AboutWebSite
                }
            ]
        }
  ]
})
 

About.vue

<template>
    <div>
            <router-link to="/AboutMe">關於博主</router-link>
        <router-link to="/AboutWebSite">關於網站</router-link>
        <router-view/>
    </div>
</template>

<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>

<style>

</style>

 

Home.vue

<template>
    <div>
        顯示博客內容
    </div>
</template>

<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>

<style>

</style>

 

AboutMe.vue

<template>
    <div>
        顯示博主我的相關事蹟
    </div>
</template>

<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>

<style>

</style>

 

AboutWebSite.vue

<template>
    <div>
        顯示網址發展歷史
    </div>
</template>

<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>

<style>

</style>

 

App.vue

<template>
  <div id="app">
    <!-- <img src="./assets/logo.png"> -->
        <router-link to="/Home">首頁</router-link>
        <router-link to="/About">關於</router-link>
    <router-view/>
  </div>
</template>

<script>
export default { 
  name: 'App'
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

 

  

main.js

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'

Vue.config.productionTip = false

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>'
})

 

啓動項目,運行npm run dev

 

 

 

相關文章
相關標籤/搜索