掘友等级
获得徽章 0
npx
1. 如果本地有就相当于./node_modules/.bin
2. 如果本地没有就相当于一次执行
babel preset pugin
1. 先执行plugin , 后执行 preset
2. plugin 顺序执行
3. preset 逆序执行
render tree -> tree
visiablity: false
real dom -> render tree
vue v-show
react ??
核心用的是display: none
virtual dom -> real dom
vue v-if
react &&操作符
virtual dom -> real dom -> render tree -> view
react 原则 不要修改直接修改state....
css 优先级
1. !important
2. 内联样式 ui组件的样式配置比如width , height等
3. id
4. class
5. 伪类
6. 伪元素
下一页