Vue 组件复用性和slot
1、组件可复用
2、slot元素作为组件模板之中的内容分发插槽,元素自身可以被替换
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div id="app"> <p>{{msg}}</p> <!-- 组件的复用性 --> <my-div>登录</my-div> <hr /> <my-div>注册</my-div> </div> <script src="./js/vue.js"></script> <script> // 全局组件 Vue.component('my-div', { data(){ return { id: 1, } }, // slot元素作为组件模板之中的内容分发插槽,元素自身可以被替换 template:` <div> <button><slot></slot></button> </div> `, }) new Vue({ el: "#app", data(){ return { msg: "测试", } }, }) </script> </body> </html>