A Pen by Captain Anonymous on CodePen.
Last active
August 2, 2018 11:33
-
-
Save ahuigo/635f1a6996e19fa83641929231f4eed8 to your computer and use it in GitHub Desktop.
Vue slot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="parent-template"> | |
<h1>我才是boss</h1> | |
<child> | |
<p>>原始头</p> | |
<p slot="head">我是头</p> | |
<p slot="foot">我是尾</p> | |
<p slot="xx">我没用</p> | |
<p>>原始尾</p> | |
</child> | |
</div> | |
<template id="main-template"> | |
<div> | |
<slot name="head">头部占位</slot> | |
<div> | |
<p>原始内容(无slot):</p> | |
<slot>原始内容占位</slot> | |
</div> | |
<slot name="foot">尾部占位</slot> | |
</div> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new Vue({ | |
el: "#parent-template", | |
components:{ | |
'child':{template: `#main-template`} | |
}, | |
data:{ | |
list:['a','b'], | |
}, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17-beta.0/vue.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment