原文链接:https://blog.csdn.net/Code_shadow/article/details/80524633 var Index = layer.open({ title: "测试", type: , content: 'http://localhost:2690/ProgressTimeline.html', area: ["80%", "90%"], success: function () { var data = [ {…
子父组件通信: 创建一个父组件 Home , 创建一个子组件 Head Home 组件: import Head from "./Head.vue" // 引入 Head 组件 components:{ "v-head":Head // 注册 head 组件 } Head 组件: <button @click="toPar()">传递给父组件</button> // 点击事件触发 data(){ return{ msg:&…