一、课程目标
1.vue-cli脚手架
2.将index.html与组件分开
3.嵌套路由
二、关于vue-cli
vue-cli是vue.js的脚手架,用于自动生成vue.js+webpack的项目模板,创建命令如下:
vue init webpack xxx
注1:xxx 为自己创建项目的名称
注2:必须先安装vue,vue-cli,webpack,node等一些必要的环境
三、安装vue-cli
1.输入 npm install -g vue-cli
安装成功后,会出现如下文件:
npm install/npm install xxx -S/npm install xxx -D/npm install xxx -g的区别
1 npm install
下载“package.json”中dependencies和devdependencies中配置的所有依赖模块,并保存到项目的node_modules目录注1:在git clone项目的时候,项目文件中并没有node_modules文件夹,为什么呢?
2 npm install xxx -g
全局安装,下载依赖模块,并保存到%node_home%\node_global\node_modules目录下3 npm install xxx -S
写入到package.json的dependencies对象,并保存到项目的node_modules目录
4 npm install xxx -D
写入到package.json的devDependencies对象,并保存到项目的node_modules目录
四、创建SPA项目
在HBuilder X软件所存放的文件中执行命令提示符(cmd)操作
执行命令:
vue init webpack spa1
此命令用于创建SPA项目,它会在当前目录生成一个以“spa1”命名的文件夹
spa1即为项目名,项目名不能用中文或大写字母,然后终端会出现“一问一答”模式
一问一答模式:
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安装依赖全部选择好回车就进行了生成项目,出现如下内容表示项目创建完成
# Project initialization finished!
# ========================
实在不会选,就回车选择“默认”或是选择“N”不安装
将所创建的文件引入到HBuider X
在index.js中修改端口号,避免被占用
执行 cd 项目名 再执行 npm run dev
搭建成功
五、嵌套路由
新建vue文件
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>
Home.vue
<template>
<div>
显示博客内容
</div>
</template><script>
export default{
data(){
return{};
}
}</script>
<style>
</style>
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>
AboutMe.vue
<template>
<div>
显示博主相关个人事迹
</div>
</template><script>
export default{
data(){
return{};
}
}
</script><style>
</style>
AboutWebSize.vue
<template>
<div>
显示网站发展历史</div>
</template><script>
export default{
data(){
return{};
}
}
</script><style>
</style>
t269_spa/src/router/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
}
]
}
]
})
页面效果图: