1. Install the relevant preprocessors you want to use.
npm install --save-dev node-sass jade
| function btoa(v) { | |
| var l=v.length,i=(~~(l/3)+1)*4,n,c='',r='',e=0,s,t,q,h='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' | |
| while(--i){ | |
| if(l-->0){ | |
| n=v[v.length-1-l].charCodeAt().toString(2) | |
| c=c+('00000000'.substr(n.length)+n) | |
| } | |
| s=c.substr(e,6) | |
| r=r+h[parseInt(s,2)] | |
| e=e+6 |
npm install --save-dev node-sass jade
npm install -g vue-cli
display: flex is just display: block that assigns different flow to the children.display: inline-flex is just display: inline that assigns different flow to the children.So why mess with block or inline at all!? Why not have a property that just assigns a different flow to the children??
input
Panel is a set of guidelines that extend the RSCSS guide for Sass components to create a more flexible "box model" by using layers.
RSCSS recommends using a component structure like the one below. If you're not familiar with how RSCSS works, you should read through the RSCSS documentation before continuing on.