路由和组件

layout.png

任务目标: 配置首页路由和组件的嵌套关系

1)根组件下定义一级路由组件出口

src/App.vue

  1. <template>
  2. <!-- 一级路由 -->
  3. <router-view></router-view>
  4. </template>

2)定义一级路由布局容器组件

src/views/Layout/index.vue

  1. <template>
  2. <nav>顶部通栏</nav>
  3. <header>头部</header>
  4. <main>
  5. <!-- 二级路由出口 -->
  6. <router-view></router-view>
  7. </main>
  8. <footer>底部</footer>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'xtx-layout'
  13. }
  14. </script>
  15. <style scoped lang='less'></style>

3)二级路由首页组件

src/views/Home/index.vue

  1. <template>
  2. <div class='xtx-home-page'>
  3. 首页
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'xtx-home-page'
  9. }
  10. </script>
  11. <style scoped lang='less'></style>

4)配置路由规则

src/router/index.js

  1. import { createRouter, createWebHashHistory } from 'vue-router'
  2. const Layout = () => import('@/views/Layout')
  3. const Home = () => import('@/views/Home/index')
  4. const routes = [
  5. {
  6. path: '/',
  7. component: Layout,
  8. children: [
  9. { path: '/', component: Home }
  10. ]
  11. }
  12. ]
  13. const router = createRouter({
  14. history: createWebHashHistory(),
  15. routes
  16. })
  17. export default router

Less的自动化导入

任务目标: 让业务组件自动加入公共样式(全局字体色值)

我们开发的应用有些样式是公用的,比如我们常见的配色色值,为了做到统一修改的目的往往需要定义成less变量,很多的业务组件都需要使用这些变量,如果我们每一个业务组件都手动引入然后使用的话,开发量巨大,所以为了解决这个问题,我们采取自动导入的方式,方便我们业务组件使用全局less变量

手动引入方案

1)准备样式变量文件

src/styles/variables.less

  1. // 主题
  2. @xtxColor:#27BA9B;
  3. // 辅助
  4. @helpColor:#E26237;
  5. // 成功
  6. @sucColor:#1DC779;
  7. // 警告
  8. @warnColor:#FFB302;
  9. // 价格
  10. @priceColor:#CF4444;

2)手动引入使用其中的变量

app.vue文件中进行简单测试

  1. <template>
  2. <!-- 一级路由出口 -->
  3. <router-view />
  4. <div class="test">我是测试文字</div>
  5. </template>
  6. <style lang="less" scoped>
  7. // 引入我们定义了less变化的文件
  8. // ~线不能丢
  9. @import "~@/styles/variables.less";
  10. .test {
  11. color: @xtxColor;
  12. }
  13. </style>

自动引入方案

解决方案:使用vue-cli的style-resoures-loader插件来完成自动注入到每个vue组件中style标签中

1)在当前项目下执行一下命令vue add style-resources-loader,添加一个vue-cli的插件
01.png
2) 安装完毕后会在vue.config.js中自动添加配置,如下:

  1. module.exports = {
  2. pluginOptions: {
  3. 'style-resources-loader': {
  4. preProcessor: 'less',
  5. patterns: []
  6. }
  7. }
  8. }

3)把需要注入的文件配置一下后,重启服务即可

  1. const path = require('path')
  2. module.exports = {
  3. pluginOptions: {
  4. 'style-resources-loader': {
  5. preProcessor: 'less',
  6. patterns: [
  7. // 配置哪些文件需要自动导入
  8. path.join(__dirname, './src/styles/variables.less')
  9. ]
  10. }
  11. }
  12. }

测试一下,我们不再需要在组件中手动import引入色值文件了,直接使用就可以了,nice~

重置样式与公用样式

任务目标: 让业务组件加入公共样式

1)重置样式

执行 npm i normalize.css 安装重置样式的包,然后在 main.js 导入 normalize.css 即可

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. +import 'normalize.css'
  6. createApp(App).use(store).use(router).mount('#app')

2) 公用样式

新建文件 src/styles/common.less 在该文件写入常用的样式,然后在 main.js 导入即可

src/styles/common.less

  1. // 重置样式
  2. * {
  3. box-sizing: border-box;
  4. }
  5. html {
  6. height: 100%;
  7. font-size: 14px;
  8. }
  9. body {
  10. height: 100%;
  11. color: #333;
  12. min-width: 1240px;
  13. font: 1em/1.4 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB', 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif
  14. }
  15. ul,
  16. h1,
  17. h3,
  18. h4,
  19. p,
  20. dl,
  21. dd {
  22. padding: 0;
  23. margin: 0;
  24. }
  25. a {
  26. text-decoration: none;
  27. color: #333;
  28. outline: none;
  29. }
  30. i {
  31. font-style: normal;
  32. }
  33. input[type="text"],
  34. input[type="search"],
  35. input[type="password"],
  36. input[type="checkbox"]{
  37. padding: 0;
  38. outline: none;
  39. border: none;
  40. -webkit-appearance: none;
  41. &::placeholder{
  42. color: #ccc;
  43. }
  44. }
  45. img {
  46. max-width: 100%;
  47. max-height: 100%;
  48. vertical-align: middle;
  49. background: #ebebeb url(../assets/images/200.png) no-repeat center / contain;
  50. }
  51. ul {
  52. list-style: none;
  53. }
  54. #app {
  55. background: #f5f5f5;
  56. user-select: none;
  57. }
  58. .container {
  59. width: 1240px;
  60. margin: 0 auto;
  61. position: relative;
  62. }
  63. .ellipsis {
  64. white-space: nowrap;
  65. text-overflow: ellipsis;
  66. overflow: hidden;
  67. }
  68. .ellipsis-2 {
  69. word-break: break-all;
  70. text-overflow: ellipsis;
  71. display: -webkit-box;
  72. -webkit-box-orient: vertical;
  73. -webkit-line-clamp: 2;
  74. overflow: hidden;
  75. }
  76. .fl {
  77. float: left;
  78. }
  79. .fr {
  80. float: right;
  81. }
  82. .clearfix:after {
  83. content: ".";
  84. display: block;
  85. visibility: hidden;
  86. height: 0;
  87. line-height: 0;
  88. clear: both;
  89. }

src/main.js

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. import 'normalize.css'
  6. +import '@/styles/common.less'
  7. createApp(App).use(store).use(router).mount('#app')

Layout组件布局

顶部通栏布局

任务目标: 完成Layou组件的顶部通栏组件布局

02.png

1)在 public/index.html 引入字体图标文件

  1. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  2. <link rel="stylesheet" href="//at.alicdn.com/t/font_2143783_iq6z4ey5vu.css">
  3. <title><%= htmlWebpackPlugin.options.title %></title>

2)然后,新建头部导航组件

Layout/components/topnav.vue

  1. <template>
  2. <nav class="app-topnav">
  3. <div class="container">
  4. <ul>
  5. <li><a href="javascript:;"><i class="iconfont icon-user"></i>周杰伦</a></li>
  6. <li><a href="javascript:;">退出登录</a></li>
  7. <li><a href="javascript:;">请先登录</a></li>
  8. <li><a href="javascript:;">免费注册</a></li>
  9. <li><a href="javascript:;">我的订单</a></li>
  10. <li><a href="javascript:;">会员中心</a></li>
  11. <li><a href="javascript:;">帮助中心</a></li>
  12. <li><a href="javascript:;">关于我们</a></li>
  13. <li><a href="javascript:;"><i class="iconfont icon-phone"></i>手机版</a></li>
  14. </ul>
  15. </div>
  16. </nav>
  17. </template>
  18. <script>
  19. export default {
  20. name: 'AppTopnav'
  21. }
  22. </script>
  23. <style scoped lang="less">
  24. .app-topnav {
  25. background: #333;
  26. ul {
  27. display: flex;
  28. height: 53px;
  29. justify-content: flex-end;
  30. align-items: center;
  31. li {
  32. a {
  33. padding: 0 15px;
  34. color: #cdcdcd;
  35. line-height: 1;
  36. display: inline-block;
  37. i {
  38. font-size: 14px;
  39. margin-right: 2px;
  40. }
  41. &:hover {
  42. color: @xtxColor;
  43. }
  44. }
  45. ~ li {
  46. a {
  47. border-left: 2px solid #666;
  48. }
  49. }
  50. }
  51. }
  52. }
  53. </style>

3)在 src/views/Layout.vue 中导入使用

  1. <template>
  2. <!-- 顶部通栏 -->
  3. <AppTopnav/>
  4. <header>头部</header>
  5. <main>
  6. <!-- 二级路由 -->
  7. <router-view></router-view>
  8. </main>
  9. <footer>底部</footer>
  10. </template>
  11. <script>
  12. import TopNav from './components/top-nav'
  13. export default {
  14. name: 'XtxLayout',
  15. components: { TopNav}
  16. }
  17. </script>

4)根据当前的登录状态显示 用户名和退出登录

login-status.png

  1. <ul>
  2. <template v-if="$store.user.state.token">
  3. <li><a href="javascript:;"><i class="iconfont icon-user"></i>周杰伦</a></li>
  4. <li><a href="javascript:;">退出登录</a></li>
  5. </template>
  6. <template v-else>
  7. <li><a href="javascript:;">请先登录</a></li>
  8. <li><a href="javascript:;">免费注册</a></li>
  9. </template>
  10. <li><a href="javascript:;">我的订单</a></li>
  11. <li><a href="javascript:;">会员中心</a></li>
  12. <li><a href="javascript:;">帮助中心</a></li>
  13. <li><a href="javascript:;">关于我们</a></li>
  14. <li><a href="javascript:;"><i class="iconfont icon-phone"></i>手机版</a></li>
  15. </ul>

头部布局

任务目标: 完成Layout组件的头部布局

03.png

1)新建header头部组件

Layout/components/header.vue

  1. <template>
  2. <header class='app-header'>
  3. <div class="container">
  4. <h1 class="logo"><RouterLink to="/">小兔鲜</RouterLink></h1>
  5. <ul class="navs">
  6. <li class="home"><RouterLink to="/">首页</RouterLink></li>
  7. <li><a href="#">美食</a></li>
  8. <li><a href="#">餐厨</a></li>
  9. <li><a href="#">艺术</a></li>
  10. <li><a href="#">电器</a></li>
  11. <li><a href="#">居家</a></li>
  12. <li><a href="#">洗护</a></li>
  13. <li><a href="#">孕婴</a></li>
  14. <li><a href="#">服装</a></li>
  15. <li><a href="#">杂货</a></li>
  16. </ul>
  17. <div class="search">
  18. <i class="iconfont icon-search"></i>
  19. <input type="text" placeholder="搜一搜">
  20. </div>
  21. <div class="cart">
  22. <a class="curr" href="#">
  23. <i class="iconfont icon-cart"></i><em>2</em>
  24. </a>
  25. </div>
  26. </div>
  27. </header>
  28. </template>
  29. <script>
  30. export default {
  31. name: 'AppHeader'
  32. }
  33. </script>
  34. <style scoped lang='less'>
  35. .app-header {
  36. background: #fff;
  37. .container {
  38. display: flex;
  39. align-items: center;
  40. }
  41. .logo {
  42. width: 200px;
  43. a {
  44. display: block;
  45. height: 132px;
  46. width: 100%;
  47. text-indent: -9999px;
  48. background: url('~@/assets/images/logo.png') no-repeat center 18px / contain;
  49. }
  50. }
  51. .navs {
  52. width: 820px;
  53. display: flex;
  54. justify-content: space-around;
  55. padding-left: 40px;
  56. li {
  57. margin-right: 40px;
  58. width: 38px;
  59. text-align: center;
  60. a {
  61. font-size: 16px;
  62. line-height: 32px;
  63. height: 32px;
  64. display: inline-block;
  65. }
  66. &:hover {
  67. a {
  68. color: @xtxColor;
  69. border-bottom: 1px solid @xtxColor;
  70. }
  71. }
  72. }
  73. }
  74. .search {
  75. width: 170px;
  76. height: 32px;
  77. position: relative;
  78. border-bottom: 1px solid #e7e7e7;
  79. line-height: 32px;
  80. .icon-search {
  81. font-size: 18px;
  82. margin-left: 5px;
  83. }
  84. input {
  85. width: 140px;
  86. padding-left: 5px;
  87. color: #666;
  88. }
  89. }
  90. .cart {
  91. width: 50px;
  92. .curr {
  93. height: 32px;
  94. line-height: 32px;
  95. text-align: center;
  96. position: relative;
  97. display: block;
  98. .icon-cart{
  99. font-size: 22px;
  100. }
  101. em {
  102. font-style: normal;
  103. position: absolute;
  104. right: 0;
  105. top: 0;
  106. padding: 1px 6px;
  107. line-height: 1;
  108. background: @helpColor;
  109. color: #fff;
  110. font-size: 12px;
  111. border-radius: 10px;
  112. font-family: Arial;
  113. }
  114. }
  115. }
  116. }
  117. </style>

2)在 src/views/Layout.vue 中导入使用

  1. <template>
  2. <!-- 顶部通栏 -->
  3. <AppTopnav/>
  4. <!-- 头部组件 -->
  5. <AppHeader/>
  6. <main>
  7. <!-- 二级路由 -->
  8. <router-view></router-view>
  9. </main>
  10. <footer>底部</footer>
  11. </template>
  12. <script>
  13. import TopNav from './components/top-nav'
  14. import Header from './components/header'
  15. export default {
  16. name: 'XtxLayout',
  17. components: {
  18. TopNav,
  19. Header
  20. }
  21. }
  22. </script>

抽离分类导航组件

任务目标: 提取头部分类导航组件,提供给头部
nav.png

  1. 提取头部导航区域为一个组件

src/components/header-nav.vue

  1. <template>
  2. <ul class="app-header-nav">
  3. <li class="home"><RouterLink to="/">首页</RouterLink></li>
  4. <li><a href="#">美食</a></li>
  5. <li><a href="#">餐厨</a></li>
  6. <li><a href="#">艺术</a></li>
  7. <li><a href="#">电器</a></li>
  8. <li><a href="#">居家</a></li>
  9. <li><a href="#">洗护</a></li>
  10. <li><a href="#">孕婴</a></li>
  11. <li><a href="#">服装</a></li>
  12. <li><a href="#">杂货</a></li>
  13. </ul>
  14. </template>
  15. <script>
  16. export default {
  17. name: 'AppHeaderNav'
  18. }
  19. </script>
  20. <style scoped lang='less'>
  21. .app-header-nav {
  22. width: 820px;
  23. display: flex;
  24. padding-left: 40px;
  25. position: relative;
  26. z-index: 998;
  27. li {
  28. margin-right: 40px;
  29. width: 38px;
  30. text-align: center;
  31. a {
  32. font-size: 16px;
  33. line-height: 32px;
  34. height: 32px;
  35. display: inline-block;
  36. }
  37. &:hover {
  38. a {
  39. color: @xtxColor;
  40. border-bottom: 1px solid @xtxColor;
  41. }
  42. }
  43. }
  44. }
  45. </style>

2)在 Layout/components/header.vue 中使用组件,注意,删除结构和样式

  1. <template>
  2. <header class='app-header'>
  3. <div class="container">
  4. <h1 class="logo"><RouterLink to="/">小兔鲜</RouterLink></h1>
  5. <!-- 头部导航区域 -->
  6. <AppHeaderNav />
  7. <div class="search">
  8. <i class="iconfont icon-search"></i>
  9. <input type="text" placeholder="搜一搜">
  10. </div>
  11. <div class="cart">
  12. <a class="curr" href="#">
  13. <i class="iconfont icon-cart"></i><em>2</em>
  14. </a>
  15. </div>
  16. </div>
  17. </header>
  18. </template>
  19. <script>
  20. import HeaderNav from './header-nav'
  21. export default {
  22. name: 'AppHeader',
  23. components: {
  24. HeaderNav
  25. }
  26. }
  27. </script>

3)完善子级分类布局 src/Layout/components/header-nav.vue

一级分类鼠标hover的时候,会展示二级分类列表

  1. <template>
  2. <ul class="app-header-nav">
  3. <li class="home"><RouterLink to="/">首页</RouterLink></li>
  4. <li>
  5. <a href="#">美食</a>
  6. <div class="layer">
  7. <ul>
  8. <li v-for="i in 10" :key="i">
  9. <a href="#">
  10. <img src="http://zhoushugang.gitee.io/erabbit-client-pc-static/uploads/img/category%20(4).png" alt="">
  11. <p>果干</p>
  12. </a>
  13. </li>
  14. </ul>
  15. </div>
  16. </li>
  17. <li><a href="#">餐厨</a></li>
  18. <li><a href="#">艺术</a></li>
  19. <li><a href="#">电器</a></li>
  20. <li><a href="#">居家</a></li>
  21. <li><a href="#">洗护</a></li>
  22. <li><a href="#">孕婴</a></li>
  23. <li><a href="#">服装</a></li>
  24. <li><a href="#">杂货</a></li>
  25. </ul>
  26. </template>
  27. <script>
  28. export default {
  29. name: 'AppHeaderNav'
  30. }
  31. </script>
  32. <style scoped lang='less'>
  33. .app-header-nav {
  34. width: 820px;
  35. display: flex;
  36. padding-left: 40px;
  37. position: relative;
  38. z-index: 998;
  39. li {
  40. margin-right: 40px;
  41. width: 38px;
  42. text-align: center;
  43. a {
  44. font-size: 16px;
  45. line-height: 32px;
  46. height: 32px;
  47. display: inline-block;
  48. }
  49. &:hover {
  50. a {
  51. color: @xtxColor;
  52. border-bottom: 1px solid @xtxColor;
  53. }
  54. }
  55. // 初始样式 不显示
  56. .layer {
  57. width: 1240px;
  58. background-color: #fff;
  59. position: absolute;
  60. left: -200px;
  61. top: 56px;
  62. height: 0;
  63. overflow: hidden;
  64. opacity: 0;
  65. box-shadow: 0 0 5px #ccc;
  66. transition: all 0.2s 0.1s;
  67. ul {
  68. display: flex;
  69. flex-wrap: wrap;
  70. padding: 0 70px;
  71. align-items: center;
  72. height: 124px;
  73. li {
  74. width: 110px;
  75. text-align: center;
  76. img {
  77. width: 60px;
  78. height: 60px;
  79. }
  80. p {
  81. padding-top: 10px;
  82. }
  83. &:hover {
  84. p {
  85. color: @xtxColor;
  86. }
  87. }
  88. }
  89. }
  90. }
  91. // hover之后显示出来
  92. &:hover {
  93. // 加上 >
  94. > a {
  95. color: @xtxColor;
  96. border-bottom: 1px solid @xtxColor;
  97. }
  98. > .layer {
  99. height: 124px;
  100. opacity: 1;
  101. }
  102. }
  103. }
  104. }
  105. </style>

底部布局

任务目标: 完成Layou组件的顶部footer组件布局

04.png

1)新建底部组件

Layout/components/footer.vue

  1. <template>
  2. <footer class="app_footer">
  3. <!-- 联系我们 -->
  4. <div class="contact">
  5. <div class="container">
  6. <dl>
  7. <dt>客户服务</dt>
  8. <dd><i class="iconfont icon-kefu"></i> 在线客服</dd>
  9. <dd><i class="iconfont icon-question"></i> 问题反馈</dd>
  10. </dl>
  11. <dl>
  12. <dt>关注我们</dt>
  13. <dd><i class="iconfont icon-weixin"></i> 公众号</dd>
  14. <dd><i class="iconfont icon-weibo"></i> 微博</dd>
  15. </dl>
  16. <dl>
  17. <dt>下载APP</dt>
  18. <dd class="qrcode"><img src="@/assets/images/qrcode.jpg" /></dd>
  19. <dd class="download">
  20. <span>扫描二维码</span>
  21. <span>立马下载APP</span>
  22. <a href="javascript:;">下载页面</a>
  23. </dd>
  24. </dl>
  25. <dl>
  26. <dt>服务热线</dt>
  27. <dd class="hotline">400-0000-000 <small>周一至周日 8:00-18:00</small></dd>
  28. </dl>
  29. </div>
  30. </div>
  31. <!-- 其它 -->
  32. <div class="extra">
  33. <div class="container">
  34. <div class="slogan">
  35. <a href="javascript:;">
  36. <i class="iconfont icon-footer01"></i>
  37. <span>价格亲民</span>
  38. </a>
  39. <a href="javascript:;">
  40. <i class="iconfont icon-footer02"></i>
  41. <span>物流快捷</span>
  42. </a>
  43. <a href="javascript:;">
  44. <i class="iconfont icon-footer03"></i>
  45. <span>品质新鲜</span>
  46. </a>
  47. </div>
  48. <!-- 版权信息 -->
  49. <div class="copyright">
  50. <p>
  51. <a href="javascript:;">关于我们</a>
  52. <a href="javascript:;">帮助中心</a>
  53. <a href="javascript:;">售后服务</a>
  54. <a href="javascript:;">配送与验收</a>
  55. <a href="javascript:;">商务合作</a>
  56. <a href="javascript:;">搜索推荐</a>
  57. <a href="javascript:;">友情链接</a>
  58. </p>
  59. <p>CopyRight © 小兔鲜儿</p>
  60. </div>
  61. </div>
  62. </div>
  63. </footer>
  64. </template>
  65. <script>
  66. export default {
  67. name: 'AppFooter'
  68. }
  69. </script>
  70. <style scoped lang='less'>
  71. .app_footer {
  72. overflow: hidden;
  73. background-color: #f5f5f5;
  74. padding-top: 20px;
  75. .contact {
  76. background: #fff;
  77. .container {
  78. padding: 60px 0 40px 25px;
  79. display: flex;
  80. }
  81. dl {
  82. height: 190px;
  83. text-align: center;
  84. padding: 0 72px;
  85. border-right: 1px solid #f2f2f2;
  86. color: #999;
  87. &:first-child {
  88. padding-left: 0;
  89. }
  90. &:last-child {
  91. border-right: none;
  92. padding-right: 0;
  93. }
  94. }
  95. dt {
  96. line-height: 1;
  97. font-size: 18px;
  98. }
  99. dd {
  100. margin: 36px 12px 0 0;
  101. float: left;
  102. width: 92px;
  103. height: 92px;
  104. padding-top: 10px;
  105. border: 1px solid #ededed;
  106. .iconfont {
  107. font-size: 36px;
  108. display: block;
  109. color: #666;
  110. }
  111. &:hover {
  112. .iconfont {
  113. color: @xtxColor;
  114. }
  115. }
  116. &:last-child {
  117. margin-right: 0;
  118. }
  119. }
  120. .qrcode {
  121. width: 92px;
  122. height: 92px;
  123. padding: 7px;
  124. border: 1px solid #ededed;
  125. }
  126. .download {
  127. padding-top: 5px;
  128. font-size: 14px;
  129. width: auto;
  130. height: auto;
  131. border: none;
  132. span {
  133. display: block;
  134. }
  135. a {
  136. display: block;
  137. line-height: 1;
  138. padding: 10px 25px;
  139. margin-top: 5px;
  140. color: #fff;
  141. border-radius: 2px;
  142. background-color: @xtxColor;
  143. }
  144. }
  145. .hotline {
  146. padding-top: 20px;
  147. font-size: 22px;
  148. color: #666;
  149. width: auto;
  150. height: auto;
  151. border: none;
  152. small {
  153. display: block;
  154. font-size: 15px;
  155. color: #999;
  156. }
  157. }
  158. }
  159. .extra {
  160. background-color: #333;
  161. }
  162. .slogan {
  163. height: 178px;
  164. line-height: 58px;
  165. padding: 60px 100px;
  166. border-bottom: 1px solid #434343;
  167. display: flex;
  168. justify-content: space-between;
  169. a {
  170. height: 58px;
  171. line-height: 58px;
  172. color: #fff;
  173. font-size: 28px;
  174. i {
  175. font-size: 50px;
  176. vertical-align: middle;
  177. margin-right: 10px;
  178. font-weight: 100;
  179. }
  180. span {
  181. vertical-align: middle;
  182. text-shadow: 0 0 1px #333;
  183. }
  184. }
  185. }
  186. .copyright {
  187. height: 170px;
  188. padding-top: 40px;
  189. text-align: center;
  190. color: #999;
  191. font-size: 15px;
  192. p {
  193. line-height: 1;
  194. margin-bottom: 20px;
  195. }
  196. a {
  197. color: #999;
  198. line-height: 1;
  199. padding: 0 10px;
  200. border-right: 1px solid #999;
  201. &:last-child {
  202. border-right: none;
  203. }
  204. }
  205. }
  206. }
  207. </style>

2)在 src/views/Layout.vue 中导入使用

  1. <template>
  2. <!-- 顶部通栏组件 -->
  3. <TopNav />
  4. <!-- header区域 -->
  5. <Header />
  6. <main>
  7. <!-- 二级路由出口 -->
  8. <router-view></router-view>
  9. </main>
  10. <!-- 底部footer -->
  11. <Footer/>
  12. </template>
  13. <script>
  14. import AppFooter from './components/app-footer'
  15. export default {
  16. name: 'XtxLayout',
  17. components: { AppFooter }
  18. }
  19. </script>

重点总结

组件需要抽离的场景

  1. 如果组件功能独立 完全可以独立维护 抽离成一个组件 (可维护性角度)
  2. 组件如果是需要被很多组件复用的 抽离成一个组件 (复用性角度)

组件的命名和使用

  1. 从组件的命名上就体现出组件之间的嵌套关系
  2. 组件在模板区域使用的时候 遵守风格 TopNav top-nav

组件就近维护原则

  1. 在大模块文件夹的内部新建一个components文件夹,就近维护当前大模块下的小模块

接口数据渲染导航

任务目标: 使用真实接口完成一级分类渲染以及二级分类渲染

使用vuex管理分类数据

1)定义API函数 src/api/home.js

  1. // 定义首页需要的接口函数
  2. import request from '@/utils/request'
  3. /**
  4. * @description: 获取导航数据
  5. * @param {*}
  6. * @return {*}
  7. */
  8. export const findHeadCategory = () => {
  9. return request('/home/category/head', 'get')
  10. }

2)定义一个vuex的category模块,来存储分类数据,提供修改和获取的函数

src/store/modules/category.js

  1. // 分类信息模块
  2. import { findHeadCategory } from '@/api/home.js'
  3. export default {
  4. namespaced: true,
  5. state: () => {
  6. return {
  7. title: '分类模块',
  8. // 分类列表数据
  9. list: []
  10. }
  11. },
  12. // 加载数据成功后需要修改list所以需要mutations函数
  13. mutations: {
  14. setList (state, payload) {
  15. state.list = payload
  16. }
  17. },
  18. // 需要向后台加载数据,所以需要actions函数获取数据
  19. actions: {
  20. async setList (context) {
  21. // 1.调用接口方法
  22. const ret = await findHeadCategory()
  23. // 2.成功获取到数据之后触发setList mutation函数
  24. context.commit('setList', ret.result)
  25. }
  26. },
  27. getters: {}
  28. }
  29. import { findHeadCategory } from '@/api/home'
  30. export default {
  31. namespaced: true,
  32. state: () => {
  33. return {
  34. list: [] // 分类列表
  35. }
  36. },
  37. // 加载数据成功后需要修改list所以需要mutations函数
  38. mutations: {
  39. setCategory (state, headCategory) {
  40. state.list = headCategory
  41. }
  42. },
  43. // 需要向后台加载数据,所以需要actions函数获取数据
  44. actions: {
  45. async asyncSetList (ctx) {
  46. // 1.调用接口方法
  47. // 2.成功获取到数据之后触发setList mutation函数
  48. const res = await findHeadCategory()
  49. console.log(res.data.result)
  50. ctx.commit('setList', res.data.result)
  51. }
  52. }
  53. }

3)把category模块挂载到vuex的实例上

src/store/index.js

  1. import cate from './modules/cate'
  1. modules: {
  2. // 分模块
  3. user,
  4. cart,
  5. cate
  6. }

触发action函数并渲染数据

src/compotents/app-header-nav.vue

  1. <template>
  2. <ul class="app-header-nav">
  3. <li class="home"><RouterLink to="/">首页</RouterLink></li>
  4. <li v-for="item in list" :key="item.id">
  5. <RouterLink to="/">{{item.name}}</RouterLink>
  6. <!--为移入打开弹框做准备-->
  7. <div class="layer">
  8. <ul>
  9. <li v-for="sub in item.children" :key="sub.id">
  10. <RouterLink to="/">
  11. <img :src="sub.picture" alt="">
  12. <p>{{sub.name}}</p>
  13. </RouterLink>
  14. </li>
  15. </ul>
  16. </div>
  17. </li>
  18. </ul>
  19. </template>
  20. <script>
  21. import { mapState } from 'vuex'
  22. export default {
  23. name: 'AppHeaderNav',
  24. computed: {
  25. ...mapState('category', ['list'])
  26. },
  27. mounted () {
  28. this.$store.dispatch('category/asyncSetList')
  29. }
  30. }
  31. </script>
  32. <template>
  33. <ul class="app-header-nav">
  34. <li class="home"><RouterLink to="/">首页</RouterLink></li>
  35. <!-- 使用v-for + vuex中的list数据 -->
  36. <li v-for="item in $store.state.category.list" :key="item.id">
  37. <a href="#">{{item.name}}</a>
  38. <!-- 放置鼠标移入显示的二级弹框 -->
  39. <div class="layer">
  40. <ul>
  41. <li v-for="i in item.children" :key="i.id">
  42. <a href="#">
  43. <img :src="i.picture" alt="">
  44. <p>{{i.name}}</p>
  45. </a>
  46. </li>
  47. </ul>
  48. </div>
  49. </li>
  50. </ul>
  51. </template>
  52. <script>
  53. // 因为需要在这个组件的模板区域使用vuex的分类数据
  54. // 有必要在这个组件中触发action函数 从而获取接口数据
  55. import { onMounted } from 'vue'
  56. // 1.从vuex中导入一个函数 useStore 返回值就是一个store实例对象
  57. import { useStore } from 'vuex'
  58. export default {
  59. name: 'AppHeaderNav',
  60. setup () {
  61. // onMounted
  62. const store = useStore() // this.$store === store
  63. onMounted(() => {
  64. // 触发action函数的执行
  65. // 如何在setup函数中拿到store实例从而调用它身上的方法
  66. store.dispatch('category/asyncSetList')
  67. })
  68. }
  69. }
  70. </script>

重点总结

基于vuex管理数据几个配置项之间的关系

  1. 1. state中定义我们需要管理的数据 响应式的 由业务决定当前到底应该定义成什么类型
  2. 2. mutation中定义修改数据的方法 同步函数 只需要完成实参注入对于state中的数据赋值即可
  3. 3. 如果有异步 我们就封装一个action函数 1. 发送请求 2.调用mutation函数 (支持异步调用的mutation)
  4. 4. 在业务组件里找到一个合适的时机调用action函数
  5. 测试:
  6. 1. dev-tools 检测当前的action函数和mutation是否调用成功 传递的参数是否符合预期
  7. 2. Logger插件 检测log区域查看当前的action函数和mutation是否调用成功 传递的参数是否符合预期

在setup函数中如何获取store实例

  1. import { useStore } from 'vuex'
  2. setup(){
  3. const store = useStore() // this.$store === store 方法的执行必须写到setup函数中 不要写到内部函数中
  4. }

吸顶头部交互实现

电商网站的首页内容会比较多,会有很多频,为了能让用户在滚动浏览内容的过程中都能够快速的切换到其它模块,需要导航一直可见,所以需要一个吸顶导航的效果

选项API实现

任务目标: 使用选项式api完成头部组件吸顶效果的实现

交互要求

  1. 滚动距离大于等于78个px的时候,组件固定在视口顶部跟随页面移动
  2. 滚动距离小于78个px的时候,组件消失

实现思路

  1. 准备一个吸顶组件,准备一个类名,控制样式让其固定在顶部
  2. 监听页面滚动,判断滚动距离,距离大于78px添加类名

代码落地

1)新建吸顶导航组件

src/Layout/components/header-sticky.vue

  1. <template>
  2. <div class="app-header-sticky" :class="{ show: top >= 78 }">
  3. <div class="container">
  4. <RouterLink class="logo" to="/" />
  5. <!-- 分类列表 -->
  6. <TopHeaderNav />
  7. <div class="right">
  8. <RouterLink to="/">品牌</RouterLink>
  9. <RouterLink to="/">专题</RouterLink>
  10. </div>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. import TopHeaderNav from '@/components/top-header-nav.vue'
  16. import { onMounted, ref } from 'vue'
  17. export default {
  18. name: 'AppHeaderSticky',
  19. components: { TopHeaderNav },
  20. setup () {
  21. // 监听页面的滚动
  22. const top = ref(0)
  23. onMounted(() => {
  24. window.onscroll = () => {
  25. top.value = document.documentElement.scrollTop
  26. }
  27. })
  28. return { top }
  29. }
  30. }
  31. </script>
  32. <style scoped lang="less">
  33. .app-header-sticky {
  34. width: 100%;
  35. height: 80px;
  36. position: fixed;
  37. left: 0;
  38. top: 0;
  39. z-index: 999;
  40. background-color: #fff;
  41. border-bottom: 1px solid #e4e4e4;
  42. // 此处为关键样式!!!
  43. // 默认情况下完全把自己移动到上面
  44. transform: translateY(-100%);
  45. // 完全透明
  46. opacity: 0;
  47. // 显示出来的类名
  48. &.show {
  49. transition: all 0.3s linear;
  50. transform: none;
  51. opacity: 1;
  52. }
  53. .container {
  54. display: flex;
  55. align-items: center;
  56. }
  57. .logo {
  58. width: 200px;
  59. height: 80px;
  60. background: url('~@/assets/images/logo.png') no-repeat right 2px;
  61. background-size: 160px auto;
  62. }
  63. .right {
  64. width: 220px;
  65. display: flex;
  66. text-align: center;
  67. padding-left: 40px;
  68. border-left: 2px solid @xtxColor;
  69. a {
  70. width: 38px;
  71. margin-right: 40px;
  72. font-size: 16px;
  73. line-height: 1;
  74. &:hover {
  75. color: @xtxColor;
  76. }
  77. }
  78. }
  79. }
  80. </style>
  81. <template>
  82. <div class="app-header-sticky">
  83. <div class="container">
  84. <RouterLink class="logo" to="/" />
  85. <HeaderNav />
  86. <div class="right">
  87. <RouterLink to="/">品牌</RouterLink>
  88. <RouterLink to="/">专题</RouterLink>
  89. </div>
  90. </div>
  91. </div>
  92. </template>
  93. <script>
  94. import HeaderNav from './header-nav'
  95. export default {
  96. name: 'AppHeaderSticky',
  97. components: { HeaderNav }
  98. }
  99. </script>
  100. <style scoped lang='less'>
  101. .app-header-sticky {
  102. width: 100%;
  103. height: 80px;
  104. position: fixed;
  105. left: 0;
  106. top: 0;
  107. z-index: 999;
  108. background-color: #fff;
  109. border-bottom: 1px solid #e4e4e4;
  110. // 此处为关键样式!!!
  111. // 默认情况下完全把自己移动到上面
  112. transform: translateY(-100%);
  113. // 完全透明
  114. opacity: 0;
  115. // 显示出来的类名
  116. &.show {
  117. transition: all 0.3s linear;
  118. transform: none;
  119. opacity: 1;
  120. }
  121. .container {
  122. display: flex;
  123. align-items: center;
  124. }
  125. .logo {
  126. width: 200px;
  127. height: 80px;
  128. background: url("~@/assets/images/logo.png") no-repeat right 2px;
  129. background-size: 160px auto;
  130. }
  131. .right {
  132. width: 220px;
  133. display: flex;
  134. text-align: center;
  135. padding-left: 40px;
  136. border-left: 2px solid @xtxColor;
  137. a {
  138. width: 38px;
  139. margin-right: 40px;
  140. font-size: 16px;
  141. line-height: 1;
  142. &:hover {
  143. color: @xtxColor;
  144. }
  145. }
  146. }
  147. }
  148. </style>

2)Layout首页引入吸顶导航组件

  1. <template>
  2. <!-- 顶部通栏组件 -->
  3. <TopNav />
  4. <!-- header区域 -->
  5. <Header />
  6. <!-- 吸顶组件 -->
  7. <HeaderSticky/>
  8. <main>
  9. <!-- 二级路由出口 -->
  10. <router-view></router-view>
  11. </main>
  12. <!-- 底部footer -->
  13. <Footer/>
  14. </template>
  15. <script>
  16. import TopNav from './components/top-nav'
  17. import Header from './components/header'
  18. import Footer from './components/footer'
  19. import HeaderSticky from './components/header-sticky'
  20. export default {
  21. name: 'XtxLayout',
  22. components: { AppTopnav, AppHeader, AppFooter, HeaderSticky }
  23. }
  24. </script>

3)在滚动到78px完成显示效果(添加类名)

通过滚动事件的触发,在回调函数里判断当前是否已经滚动了78px,如果大于则添加类名,否则移除类名

  1. document.documentElement.scrollTop 获取滚动距离
  2. :class 动态控制类名显示
  1. <div class="app-header-sticky" :class="{ show: showFlag }">
  2. data () {
  3. return {
  4. showFlag: false
  5. }
  6. },
  7. mounted () {
  8. // 监听页面滚动事件
  9. window.addEventListener('scroll',()=>{
  10. const scrollTop = document.documentElement.scrollTop
  11. if( scrollTop >= 78 ) {
  12. this.showFlag = true
  13. } else {
  14. this.showFlag = false
  15. }
  16. })
  17. }

组合API实现

任务目标: 使用组合式API实现重构吸顶功能

vueuse/core : 组合式API常用复用逻辑的集合 https://vueuse.org/core/useWindowScroll/

1)安装@vueuse/core 包,它封装了常见的一些交互逻辑

  1. npm i @vueuse/core

2)在吸顶导航中使用

src/components/app-header-sticky.vue

  1. <template>
  2. <div class="app-header-sticky" :class="{show:y >= 78}">
  3. <div class="container">
  4. <RouterLink class="logo" to="/" />
  5. <HeaderNav />
  6. <div class="left">
  7. <RouterLink to="/" >品牌</RouterLink>
  8. <RouterLink to="/" >专题</RouterLink>
  9. </div>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. import HeaderNav from './header-nav'
  15. import { useWindowScroll } from '@vueuse/core'
  16. export default {
  17. name: 'AppHeaderSticky',
  18. components: { HeaderNav },
  19. setup () {
  20. // y表示具体顶部的滚动距离 会动态更新
  21. const { y } = useWindowScroll()
  22. return { y }
  23. }
  24. }
  25. </script>

重点总结

基于事件模型的交互实现

  1. 前端 UI开发
  2. 基于事件 click scroll input change
  3. 都是基于事件 在事件的回调函数里做一些逻辑操作 控制我们视图的变化

setup执行一次

  1. 如果我们的回调执行是依赖一个响应式数据不断发生变化而再次执行回调
  2. watch
  3. 注意不要试图直接在setup里写判断逻辑

三方工具包

  1. 1. 如果我们想自己封装一个逻辑复用函数 `useFn`
  2. 2. 三方逻辑工具库
  3. 1. 基础demo demo run起来
  4. 2. 函数它的入参 支持的参数都有什么 类型是要求什么
  5. 函数的返回值 类名 如果是一个布尔值 是可以作为判断条件 function 可以被执行调用的