VUX---移動端Vue組件庫html
Element---一套基於Vue 2.0的桌面端組件庫前端
============================================vue
11-29開啓項目(version 2.0)node
Element官網連接:http://element-cn.eleme.io/#/zh-CNnpm
============================================sass
在項目中安裝sass須要【注意】的是:spa
npm install sass-loader --save-devcomponent
以後還要安裝node-sass,緣由是sass-loader依賴於node-sassrouter
npm install node-sass --save-devhtm
============================================
【 2017-12-1】
1.引入組件的時候,須要注意:
import header from './components/header'
不能用小寫的header,由於會跟h5的header重複,而後報錯
import Header from './components/header'
不能直接大寫Header開頭,由於大寫在html會變成-
【2017-01-12】
使用前端路由,當切換到新路由時,想要頁面滾到頂部:
scrollBehavior (to, from, savedPosition) {
if (savedPosition) {
return savedPosition
} else {
return { x: 0, y: 0 }
}
},//跳轉路由的時候,頁面會停留在頂端,而不是在以前頁面停下來的位置(切換頁面的時候滾動條沒有自動到頂部解決方法)
https://router.vuejs.org/zh-cn/advanced/scroll-behavior.html