路由:vue-router 带三方工具库
创建单页面应用 spa (single page application)
通过不同的URL访问不同的页面
下载:
npm install vue
npm install vue-router
1.制作一个简单的路由
* .router-link-active{
text-decoration: none;
background: orange;
color:black; }
* .active{
text-decoration: none;
background: orange;
color:black;
}
// 2.创建组件
var Index={
template:`
我是首页
` }
var About={
template:`
我是详情页
` }
// 3.配置路由
const routes=[
{path:'/',component:Index},
{path:'/index',component:Index},
{path:'/about',component:About}
]
// 4.创建一个路由实例
const router=new VueRouter({
routes:routes, linkActiveClass:'active'
})
// 5.把路由实例挂载到vue实例上
new Vue({
el:'.itany',
router:router
})
注释:点击之后可跳转,并出现自己所设置的样式
2.路由的传参:
查询字符串:
/user/regist?uname=jack&&upwd=123
接收:{{
route.params}}
// 2.创建组件
var Index={
template:`
这是首页
`
}
var About={
template:`
这是用户页
-
注册 -
登录
`
}
var User={
template:`
`
}
var Login={
template:`
`
}
// 3、配置路由
const routes=[
{path:'/',component:Index}, {path:'/index',component:Index},
{
path:'/about',
component:About,
children:[
{path:'user',component:User},
{path:'login/:userName/:password',component:Login},
]
},
]
// 4.创建路由实例
const router=new VueRouter({
routes:routes
})
// 5.
new Vue({
el:'#app',
router:router//注册路由
})
3.axios
vue中的ajax 插件
下载axios:
npm install axios
1.0 vue-resource
2.0 axios
安装http-server
npm install http-server -g
使用http-server 开启一个服务器
Document
.router-link-active{
text-decoration: none;
background: orange;
color:black;
}
.active{
text-decoration: none;
background: orange;
color:black;
}
、
// 2.创建组件
var Index={
template:`
我是首页
`
}
var About={
template:`
我是详情页
编号 | 品名 | 单价 | 数量 | 小计 |
{{value.num}} | {{value.pname}} | {{value.price}} | {{value.count}} | {{value.sub}} |
`,
data:function(){
return{
fruList:null
}
},
mounted:function(){
var self=this;
axios({
method:'get',//发送数据的方式
url:'fruit.json'
}).then(function(resp){
console.log(resp.data)
self.fruList=resp.data
}).catch(function(err){//请求失败
console.log(err)
})
}
}
// 3.配置路由
const routes=[
{path:'/',component:Index},
{path:'/index',component:Index},
{path:'/about',component:About}
]
// 4.创建一个路由实例
const router=new VueRouter({
routes:routes,
linkActiveClass:'active'
})
// 5.把路由实例挂载到vue实例上
new Vue({
el:'.itany',
router:router
})
json:
[
{
"num":1,
"pname":"apple",
"price":3,
"count":4,
"sub":12
},
{
"num":2,
"pname":"pear",
"price":4,
"count":5,
"sub":20
},
{
"num":3,
"pname":"orange",
"price":5,
"count":6,
"sub":30
}
]