将预定义的 vue.js 指令与自定义指令一起使用
Use predefined vue.js directive with custom directive
假设我有一个从特定位置获取数组结果的自定义指令,我怎么可能在内部将 v-repeat 与我的指令一起使用,而不是在外部单独调用 v-repeat。
在 Vue 中,您通常使用指令 (http://vuejs.org/guide/index.html#Directives) to modify the behavior of an existing DOM element. The behavior you are describing is more suited to a component (http://vuejs.org/guide/index.html#Components)。
您将声明一个具有 template
属性的组件,该属性内联或通过引用 <script>
样式模板将具有包含 v-repeat
.[=14 用法的标记=]
假设我有一个从特定位置获取数组结果的自定义指令,我怎么可能在内部将 v-repeat 与我的指令一起使用,而不是在外部单独调用 v-repeat。
在 Vue 中,您通常使用指令 (http://vuejs.org/guide/index.html#Directives) to modify the behavior of an existing DOM element. The behavior you are describing is more suited to a component (http://vuejs.org/guide/index.html#Components)。
您将声明一个具有 template
属性的组件,该属性内联或通过引用 <script>
样式模板将具有包含 v-repeat
.[=14 用法的标记=]