Vue2.0全家桶腾讯课堂(移动端)

2017-06-22  本文已影响0人  舍一生浮名

Vue2.0全家桶实战腾讯课堂(移动端),不当之处还请大家指正(持续更新中)。

效果预览

👉在线预览:点我!!!在线预览,手机浏览或切换浏览器移动调试

👉源码地址:Github✨✨求你的小星星~

动图预览

描述

前端部分

后端部分

待更新的功能

具体功能实现

路由结构

传统的页面应用,是用一些超链接来实现页面切换和跳转的。vue-router单页面应用中,则是路径之间的切换,也就是组件的切换。
我们创建一个 router,传入的 routes 中的每一项即为一条路由(route)配置,表示在匹配给定的地址时,应该使用什么组件渲染视图。

routes: [
    {
      path: '/',
      name: 'Index',
      component: Index
    },
    {
      path: '/Classification',
      name: 'Classification',
      component: Classification,
      children: [
        {
          path: 'ITList',
          name: 'ITList',
          component: ITList
        },
        {
          path: 'DesignList',
          name: 'DesignList',
          component: DesignList
        },
        {
          path: 'LanguageList',
          name: 'LanguageList',
          component: LanguageList
        },
        {
          path: 'ProfessionList',
          name: 'ProfessionList',
          component: ProfessionList
        },
        {
          path: 'ExamList',
          name: 'ExamList',
          component: ExamList
        },
        {
          path: 'InterestList',
          name: 'InterestList',
          component: InterestList
        }
      ]
    }]

Vuex的使用

Vuex 的状态存储是响应式的。当 Vue 组件从 store 中读取状态的时候,若 store 中的状态发生变化,那么相应的组件也会相应地得到高效更新。

需要注意:
Action 类似于 mutation,不同在于:
Action 提交的是 mutation,而不是直接变更状态。
Action 可以包含任意异步操作。

使用

npm install
npm run dev

我的简历

感兴趣请点我

上一篇 下一篇

猜你喜欢

热点阅读