Flask接口签名sign原理与实例代码浅析
313
2023-04-27
Vue学习笔记进阶篇之vue
介绍
vue-router是Vue.js官方的路由插件,它和vue.js是深度集成的,适合用于构建单页面应用。vue的单页面应用是基于路由和组件的,路由用于设定访问路径,并将路径和组件映射起来。传统的页面应用,是用一些超链接来实现页面切换和跳转的。在vue-router单页面应用中,则是路径之间的切换,也就是组件的切换。
本文是基于上一篇文章(Vue学习笔记进阶篇——vue-cli安装及介绍 )vue-cli脚手架工具的。
安装
在终端通过cd命令进入到上一篇文章中创建的my-demo1项目目录里,然后使用以下命令进行安装:
npm install vue-router --save
--save参数的作用是在我们的包配置文件package.json文件中添加对应的配置。安装成功后, 可以查看package.json文件,你会发现多了"vue-router": "^2.7.0"的配置。如下:
"dependencies": {
"vue": "^2.3.3",
"vue-router": "^2.7.0"
},
使用
通过以上步骤,我们已经安装好了vue-router,但是在vue-cli中我们如何使用呢?
首先,我们需要在main.js文件中导入并注册vue-router:
//ES6语法导入
import VueRouter from 'vue-router'
//注册
Vue.use(VueRouter)
然后便是实例化:
const router = new VueRouter({
mode: 'history',
routes:[
{path: '/', component:DemoHome},
{path: '/about', component:DemoAbout},
{path: '/contact', component:DemoContact}
]
})
path: 是路由的路径。
component: 是该路由需要渲染的组件。
上面代码中的DemoHome, DemoAbout, DemoContact都是单文件组件,所以我们同样需要创建上面三个组件,并导入到当前文件。这三个组件我们只是作为示例来使用,所以比较简单,代码分别如下:
DemoHomehttp://.vue:
export default({
name:'home'
})
#home{
width: 100%;
height: 500px;
background-color: khaki;
}
DemoAbout.vue:
export default({
name:'about'
})
#about{
width: 100%;
height: 500px;
background-color: antiquewhite;
}
DemoContact.vue:
export default({
name:'contact'
})
#contact{
width: 100%;
height: 500px;
background-color: lightskyblue;
}
创建好以上组件后,再使用ES6语法导入到main.js:
import DemoHome from './components/DemoHome'
import DemoAbout from './components/DemoAbout'
import DemoContact from './components/DemoContact'
最后在Vue实例中加入路由属性就可以了
new Vue({
el: '#app',
router,
template: '
components: { App }
})
完整的main.js应该是这样:
import Vue from 'vue'
import VueRouter from 'vue-router'
import App from './App'
import DemoHome from './components/DemoHome'
import DemoAbout from './components/DemoAbout'
import DemoContact from './components/DemoContact'
Vue.use(VueRouter)
Vue.config.productionTip = false
const router = new VueRouter({
mode: 'history',
routes:[
{path: '/', component:DemoHome},
{path: '/about', component:DemoAbout},
{path: '/contact', component:DemoContact}
]
})
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
template: '
components: { App }
})
在这里我们为了学习,所以我们简单的做个布局。接下来,我会再创建两个组件,一个叫DemoHeader, 一个叫DemoFooter。DemoHeader里面我放一个logo的图片,和导航,而这个导航的路由也将会使用我们前面定义的路由;DemoFooter就比较简单了,放一些footer信息。
下面我们看下这两个组件的代码:
DemoHeader.vue:
![](../assets/logo.png)
<router-link to="/">首页
export default({
name:'header',
data:function () {
return {
'nav-btn': 'nav-btn'
}
}
})
.header{width:1105px;margin:0 auto;height:111px;padding:12px 0 18px;position:relative;*z-index:1}
.header .logo{height:86px;width:256px;margin-top:25px}
.top-nav .navlist-wrap{width:1050px;margin:0 auto;position:relative}
.top-nav .navlist{position:absolute;right:130PX;top:-40PX}
.top-nav .navlist .nav-btn
{
float:left;
margin-left:60px;
color:#666;
vertical-align: middle;
text-decoration:none;
font-size: large;
}
在上面的代码中,我们看到了一个陌生的标签,
DemoFooter.vue:
Copyright © Chain. All rights reserved
export default({
name:'footer'
})
#footer
{
height:50px;
position:fixed;
bottom:0px;
left: 0px;
background-color: #eeeeee;
width: 100%;
padding-top: 10px;
}
我们的组件都已经创建好了,接下来的事情就是把他们组合到一起。这个组合,我们就用App.vue来实现吧。
先整理下我们的思路啊:
在我们的页面上,我们需要把DemoHeader, DemoFooter放进去,而我们的DemoHeader里面定义了导航,我们希望把导航出来的组件放到header和footer之间。所以大致应该是这个样组合:
下面看下完整的代码吧:
import DemoHeader from './components/DemoHeader'
import DemoFooter from './components/DemoFooter'
export default {
name: 'app',
components: {
DemoHeader,
DemoFooter
}
}
#app {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
background-color: aliceblue;
}
同样的道理,我们要是想使用一个组件,导入和注册的步骤是少不了的。
导入:
import DemoHeader from './components/DemoHeader'
import DemoFooter from './components/DemoFooter'
注册:
components: {
DemoHeader,
DemoFooter
}
在上面的代码中我们又发现了个陌生标签
因为它也是个组件,所以可以配合
再添加一个简单的淡入淡出的样式:
.fade-enter-active, .fade-leave-active{
transition: all .3s;
}
.fade-enter, .fade-leave-to{
opacity: 0;
}
通过上面的代码,我们发现之前学过的过渡这里都可以使用,可参考Vue学习笔记进阶篇——单元素过度
最后我们看下我们做了半天的成果吧:
首页
关于
联系方式
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~