這次帶給大家vue slot怎麼在子元件中顯示父元件傳遞,vue slot在子元件中顯示父元件傳遞的注意事項有哪些,下面就是實戰案例,一起來看一下。
#父元件使用沒有指定slot屬性,預設為default
## 在slot中可以使用預設值,如果父元件沒有傳遞對應的slot,則會顯示預設值
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="vue.js" charset="utf-8"></script> </head> <body> <p id="app"> <modal> <!-- 调用父组件的方法 --> <h1 @click='click'>aaa</h1></modal> <modal> <h2>bbb</h2></modal> <modal> <!-- 使用slot设置模板中的名字,会插入到指定的slot中 --> <p slot='title'>hello</p> <p slot='content'> world </p> </modal> <modal></modal> </p> <template id="modal"> <!-- 使用slot在子组件中显示父组件传过来的模板 --> <p> modal <slot name='default'>如果没有会使用这个默认值</slot> <h1> title: <slot name='title'> </slot> </h1> content: <slot name='content'></slot> </p> </template> <script type="text/javascript"> let modal = { template: '#modal' } new Vue({ el: '#app', components: { // es 简写 ,只写一个的意思为 // modal:modal modal }, methods: { click() { console.log('aaa') } } }) </script> </body> </html>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是vue slot怎麼在子元件中顯示父元件傳遞的詳細內容。更多資訊請關注PHP中文網其他相關文章!