VUE.js快速入门(vue本地应用⑥)
2021-02-13 08:21
标签:src net meta initial cdn template 快速 默认值 scale vue组件的内容分发 为了让组件可以组合,需要一种方式来混合父组件内容和子组件内容模板,这个过程叫做内容分发 插槽: 单 多 可以在slot里面直接写,但是如果写了,就是写的。 VUE.js快速入门(vue本地应用⑥) 标签:src net meta initial cdn template 快速 默认值 scale 原文地址:https://www.cnblogs.com/liuyang95/p/13021435.htmlDOCTYPE html>
html lang="en">
head>
meta charset="UTF-8">
meta name="viewport" content="width=device-width, initial-scale=1.0">
title>Documenttitle>
head>
body>
div id="app">
my-head>
my-title>my-title>
my-head>
div>
script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
script>
var vm=new Vue({
el:"#app",
components:{
"my-head":{
template:`div>headslot>/slot>/div>`
},
"my-title":{
template:`h2>title/h2>`
}
}
})
script>
body>
html>
DOCTYPE html>
html lang="en">
head>
meta charset="UTF-8">
meta name="viewport" content="width=device-width, initial-scale=1.0">
title>Documenttitle>
head>
body>
div id="app">
my-head>
button slot="left">->
button slot="right">->button>
my-head>
div>
script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
script>
var vm=new Vue({
el:"#app",
components:{
"my-head":{
template:`div>slot name="left">/slot>head
文章标题:VUE.js快速入门(vue本地应用⑥)
文章链接:http://soscw.com/index.php/essay/54807.html