<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">
<cpn></cpn>
</div>
<template id="temp">
<div>
<h1>999999</h1>
<slot><button>默认值</button></slot>
</div>
</template>
<script>
const app = new Vue({
el:'#app',
data:{
name:'lll'
},
components:{
cpn:{
template:'#temp',
data(){
return {
name:'kkkk'
}
}
}
}
})
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">
<cpn><h1 slot="ss">ppp</h1></cpn>
</div>
<template id="temp">
<div>
<h1>999999</h1>
<slot><button>默认值</button></slot>
<slot name="ss"><button>hhh</button></slot>
</div>
</template>
<script>
const app = new Vue({
el:'#app',
data:{
name:'lll'
},
components:{
cpn:{
template:'#temp',
data(){
return {
name:'kkkk'
}
}
}
}
})
</script>
</body>
</html>