Vue 命令をカスタマイズする方法は次のとおりです。 1. Vue.directive() を介して登録されたグローバル命令、 2. テンプレート内の v ディレクティブ命令構文を使用したローカル命令、 3. 登録されたコンポーネント内のコンポーネント内命令。ディレクティブオプションで。各命令には、bind、insert、update、componentUpdated、unbind などのフック関数があり、命令のさまざまなライフサイクル中にコードを実行するために使用されます。
Vue のカスタム命令のメソッド
Vue では、カスタム命令を通じて Vue の機能を拡張できます。より柔軟で再利用可能なコードを実現します。カスタム ディレクティブを作成する方法は次のとおりです。
1. グローバル ディレクティブ
<code class="js">Vue.directive('my-directive', { bind(el, binding, vnode) { // 指令绑定时执行 }, inserted(el, binding, vnode) { // 指令首次插入 DOM 时执行 }, update(el, binding, vnode, oldVnode) { // 指令每次更新时执行 }, componentUpdated(el, binding, vnode, oldVnode) { // 指令所在组件更新后执行 }, unbind(el, binding, vnode) { // 指令和对应元素解绑时执行 }, });</code>
2. ローカル ディレクティブ
<code class="js"><template> <div v-my-directive></div> </template> <script> export default { directives: { myDirective: { bind(el, binding, vnode) { // 指令绑定时执行 }, // ...其他指令钩子函数 } } }; </script></code>
3. コンポーネント内の説明##
<code class="js"><template> <template v-my-directive></template> </template> <script> export default { directives: { myDirective: { bind(el, binding, vnode) { // 指令绑定时执行 }, // ...其他指令钩子函数 } }, components: { // ...其他组件注册 MyComponent: { directives: { myDirective: { bind(el, binding, vnode) { // 指令绑定时执行 }, // ...其他指令钩子函数 } } } } }; </script></code>
以上がVueで命令をカスタマイズする方法は何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。