当前位置: 首页 > 编程笔记 >

vue.js template模板的使用(仿饿了么布局)

涂玉韵
2023-03-14
本文向大家介绍vue.js template模板的使用(仿饿了么布局),包括了vue.js template模板的使用(仿饿了么布局)的使用技巧和注意事项,需要的朋友参考一下

使用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 '@/components/header/header';
   export default {
     components: {
       'v-header': header
     }
   };
 </script>
<style lang="stylus" rel="stylesheet/stylus">
   @import "./common/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 '@/components/goods/goods';
 import Ratings from '@/components/ratings/ratings';
 import Seller from '@/components/seller/seller';
Vue.use(VueRouter);
 Vue.use(VueResource);
const routers = [{
   path:'/goods/goods',
   name:'goods',
   component:Goods
 },{
   path:'/ratings/ratings',
   name:'ratings',
   component:Ratings
 },{
   path:'/seller/seller',
   name:'seller',
   component:Seller
 }];
const router =new VueRouter({
   mode:'history', //如果不配置 mode,就会使用默认的 hash 模式,该模式下会将路径格式化为 #! 开头。
   routes:routers,
   linkActiveClass : 'active' // 设置 链接激活时使用的 CSS 类名,默认值: "router-link-active"
 });
 export default router;

总结

以上所述是小编给大家介绍的vue.js template模板的使用(仿饿了么布局),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对小牛知识库网站的支持!

 类似资料:
  • 客户端android 8.30 笔试 8.27 一面 项目+cpp+opengl 先是重载,哪些能重载哪些不能,问了很多类与对象的题,其他的细节忘了 因为是先约的面给了做题链接,手撕一个hot100和一个括号匹配 9.4 二面 项目深入拷打,每个技术设计是出于什么目的,解决了什么问题,有对比一些别的方案么 笔试成绩还可以就无手撕了,面试官给了建议条理性要更清晰 (因为非科班,组里就是工业软件那种开

  • 项目 项目的难点和挑战 redis和数据库的数据一致性 redis数据埋点 文件上传有没有考虑一些边界问题 手撕:堆排序 反问:业务,成长,人员变动

  • 刚面试完饿了么,分享一下热乎的面经积攒人品。 面试问题: 自我介绍 触摸事件 了解的加密机制 什么是非对称加密,什么是对称加密 handler Android布局 activity生命周期 多线程通信 tcp三次握手四次挥手 单项链表结构 协程调度 算法:字符串求回文字串数目 反问(提问了客户端的成长,面试官给我讲解了客户端在饿了么的成长路径,包括接触业务的核心程度、未来的技术成长路线等,可能也看

  • 饿了么-技术中心 测开 时长 20min 纯纯 kpi 1. 自我介绍 2. 实习都做了什么 3. 有跟测试对接过吗,我说对接的都是后端 4. 用过什么测试工具,没怎么用过 5. 问了两句项目,也是问的不着边,问我这些项目是不是拉下来别人代码看看就写简历上了😅 6. 问我技术栈,我说 C++ 和 Go,她说他们用的都是 Java 后面开始扯没用的,说技术栈不匹配啊,问我现在能不能写 Java 代

  • 1、自我介绍 2、介绍强化学习项目 状态、动作空间怎么设置的? 强化学习算法分为哪几类?PPO是On policy还是off policy?off policy和on policy的区别是什么?off policy相比于on policy有哪些优点和缺点? 3、机器学习 对哪些机器学习算法比较熟悉?特征怎么选的?lgb超参数怎么调的?特征是越多越好吗? 4、实习 CPT用了多少数据?什么机器配置?

  • 3.18上午打电话约面,问我下午有没有空,于是订到晚上 大概30分钟左右,没有手撕,顺着简历从项目问到基础知识再深入 自我介绍 为什么学前端 你的(研究生)研究方向是什么 (开始拷打项目)你的项目有什么难点 (项目)组件库和普通的页面开发有什么区别 (项目)i18n国际化的流程 (项目)为啥你用redux-tookit重构,小项目完全可以用context管理 redux为什么要设置不可变的stat