This article mainly introduces the method of using slots to distribute content in Vue. Now I share it with you and give it as a reference.
Some people also say: props can pass data from parent components to child components, and slots can pass html from parent components to child components. So how to achieve it?
Single slot:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <script type="text/javascript" src="vue.min.js"></script> </head> <body> <p id="app"> <h1>我是父组件的标题</h1> <my-component> <p>这是一些初始内容</p> <p>这是更多的初始内容</p> </my-component> </p> <script type="text/javascript"> Vue.component('my-component', { // 有效,因为是在正确的作用域内 template: '<p>\ <h2>我是子组件的标题</h2>\ <slot>只有在没有要分发的内容时才会显示。</slot>\ </p>', data: function () { return { } } }); new Vue({ el:'#app', data:{ msg:'你好啊' } }) </script> </body> </html>
Write the slot tag in the template in the component, and pass in html when the parent calls the child component.
Named slot:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <script type="text/javascript" src="vue.min.js"></script> </head> <body> <p id="app"> <my-component> <h1 slot="header">这里可能是一个页面标题</h1> <p>主要内容的一个段落。</p> <p>另一个主要段落。</p> <p slot="footer">这里有一些联系信息</p> </my-component> </p> <script type="text/javascript"> Vue.component('my-component', { // 有效,因为是在正确的作用域内 template: '<p class="container">\ <header>\ <slot name="header"></slot>\ </header>\ <main>\ <slot></slot>\ </main>\ <footer>\ <slot name="footer"></slot>\ </footer>\ </p>', data: function () { return { } } }); new Vue({ el:'#app', data:{ msg:'你好啊' } }) </script> </body> </html>
Named slot, as the name suggests, when there are multiple slot tags, you need to give them their own names and call them in the parent component slot="internal corresponding name" is required. When there is an unnamed slot tag, the default html code passed in by the parent component will all be output in the unnamed slot tag.
Scope slot
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <script type="text/javascript" src="vue.min.js"></script> </head> <body> <p id="app"> <!-- 在父级中,具有特殊特性 slot-scope 的 <template> 元素必须存在,表示它是作用域插槽的模板。slot-scope 的值将被用作一个临时变量名,此变量接收从子组件传递过来的 prop 对象: --> <child> <template scope="props"> <span>hello from parent</span><br> <span>{{ props.text }}</span> </template> </child> </p> <script type="text/javascript"> // 在子组件中,只需将数据传递到插槽,就像你将 prop 传递给组件一样: Vue.component('child',{ template:'<ul>' + '<slot text="hello from child"></slot>' + '</ul>', data:function(){ return { } }, }); new Vue({ el:'#app', data:{ msg:'你好啊' } }) </script> </body> </html>
A scope slot is a special type of slot used as a reusable template (that can be passed data), to replace already rendered elements.
In fact, it is equivalent to getting the props object passed by the child component in the parent component, and then rendering it to the parent component.
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
Bootstrap implements collapsible grouped side navigation menu
Vue.js Layer table data binding and implementation update Example
vue.js Example of nested loop, if judgment, dynamic deletion
The above is the detailed content of How to use slots to distribute content through slots in Vue. For more information, please follow other related articles on the PHP Chinese website!