Vue.js Note
vue-cli メモ :: Vue.js | Refills
@click.native
予約された <component> 要素と、その is 属性に動的に束縛することで、同じマウントポイントで複数のコンポーネントを動的に切り替えることができます
TIPS
ESLint
改行
white-space: pre;
子 → 親
子
this.$emit('my-custom-event', 'hello!');
親
<child-component @my-custom-event="greet"></child-component>
code:js
methods: {
greet(msg) {
console.log(msg); // => hello!
}
}
Style
ディープセレクタ、>>> コンビネータ
GUI
Buefy
図解
コンポーネント探し
パフォーマンス