9785 shaares
228 private links
228 private links
91 results
tagged
vue
Mhmhmh OK :)
A lot of Vue tips
Vue3 will be better on every points
- structure of the component will be better
- the use of TypeScript will improve code support for IDE and the support itself for the development in Vue with TS.
- DOM will be definitely faster
- Only compile and deliver features that will be used
Relevant thoughts along the video about the specificity of web frameworks :)
Vue3 seems promising !
this.yourBigList = Object.freeze(yourBigList);
: avoid to make the property and its first-level ones reactive → performance improvement in some cases 👍
`this.yourBigList = Object.freeze([...this.yourBigList, newItems]);
:)
Monkey fix to detect component with vue devtools and storybook :
- copy the iFrame src value from the source code
- put this address into another browser tab (when story is named
inside a Badge group: http://localhost:6006/[INSERT THE SRC OF THE IFRAME HERE])