一直在頁面寫css, 重複寫着樣式,發現佈局中,特別是h5,大量的樣式都是margin,padding,width,height, 而,當咱們須要給一個標籤寫樣式的時候,避免內聯樣式,咱們又須要取class名,對於英語不是特別好的同窗,可能會特別苦惱。好了,有了這款插件,這些都不是問題!javascript
module.exports = { // ... plugins: [ new happycss({ // cssPath: './src/assets/css/happycss.css' // importPath: './src/main.js' }), ] }
寫法 | 生成 |
class="w10" | .w10 { width: 10px } |
class="w10p" | .w10 { width: 10% } |
class="h10" | .h10 { height: 10px } |
class="mt10" | .mt { margin-top: 10px } |
class="pt10" | .pt { padding-top: 10px } |
class="lh10" | .lh10 { line-height: 10px } |