vue.js template模板的使用(仿饿了么布局)
网络编程 2021-07-04 16:46www.168986.cn编程入门
这篇文章主要介绍了vue.js template模板的使用,主要是模仿饿了么布局,用到了4个组件,分别是header.vue,goods.vue,ratings.vue,seller.vue,感兴趣的朋友跟随狼蚁SEO长沙网络推广一起看看实现代码
使用template实现如下页面(仿饿了么布局)
如上图.使用了4个组件,分别是header.vue,goods.vue,ratings.vue,seller.vue
header.vue代码如下
<template> <div class="header"> 我是header头部 </div> </template> <script type="text/ecmascript-6"> export default { }; </script> <style lang="stylus" rel="stylesheet/stylus"> .header color:#fff background:rgba(7,17,27,0.5) text-align:center height:40px line-height:40px </style> goods.vue的代码如下,其他两个类似 <template> <div class="goods"> 我是goods组件 </div> </template> <script type="text/ecmascript-6"> export default { }; </script> <style lang="stylus" rel="stylesheet/stylus"> </style>
在App.vue文件中,我们使用到了<router-link>标签和<router-view>
代码如下
<template> <div id="app"> <!--头部组件--> <v-header></v-header> <div class="tab border-1px"> <div class="tab-item"> <router-link to="/goods/goods">商品</router-link> </div> <div class="tab-item"> <router-link to="/ratings/ratings">评价</router-link> </div> <div class="tab-item"> <router-link to="/seller/seller">商家</router-link> </div> </div> <!-- keep-alive:缓存所有的页面,防止重复渲染DOM --> <keep-alive> <router-view></router-view> </keep-alive> </div> </template> <script type="text/ecmascript-6"> // 引人组件 import header from '@/ponents/header/header'; export default { ponents: { 'v-header': header } }; </script> <style lang="stylus" rel="stylesheet/stylus"> @import "./mon/stylus/mixin.styl"; .tab display:flex width:100% height:40px line-height:40px border-1px(rgba(7,17,27,0.1)) .tab-item flex:1 text-align:center & > a display:block font-weight:700 text-decoration:none font-size:14px color:rgb(77,85,93) &.active color:yellow </style>
index.js中这样写
import Vue from 'vue'; import VueRouter from 'vue-router'; import VueResource from 'vue-resource'; //引入自定义的组件 import Goods from '@/ponents/goods/goods'; import Ratings from '@/ponents/ratings/ratings'; import Seller from '@/ponents/seller/seller'; Vue.use(VueRouter); Vue.use(VueResource); const routers = [{ path:'/goods/goods', name:'goods', ponent:Goods },{ path:'/ratings/ratings', name:'ratings', ponent:Ratings },{ path:'/seller/seller', name:'seller', ponent:Seller }]; const router =new VueRouter({ mode:'history', //如果不配置 mode,就会使用默认的 hash 模式,该模式下会将路径格式化为 #! 开头。 routes:routers, linkActiveClass : 'active' // 设置 链接激活时使用的 CSS 类名,默认值: "router-link-active" }); export default router;
以上所述是长沙网络推广给大家介绍的vue.js template模板的使用(仿饿了么布局),希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!
编程语言
- 宿迁百度关键词排名指南:实现精准营销的关键
- 四川SEO优化怎么做网络推广
- 立昂技术备案老域名收购:如何为您的业务赋能
- 安徽百度关键词seo贵不贵,一般需要多少钱
- 吉林百度快照排名怎么做电话营销
- 多伦新手做SEO怎么做
- 甘肃优化关键词排名推广怎么做论坛营销
- 沙雅SEO网站推广:提升您的在线可见性
- 四川SEO优化如何提升销售额和销售量
- 聂荣网站排名优化:提升网站可见性的全方位指
- 涞水SEO:提升地方企业在线可见性的策略
- 辽宁百度seo排名怎样做网站排名
- 临湘哪有关键词排名优化:提升网站可见度的关
- 黑龙江百度网站优化有没有优惠
- 凉城优化关键词排名推广:提升您的网络可见性
- 萝北整站优化:提升您网站流量和排名的全面指