我正在尝试构建非常简单的引导程序警报组件,但是我无法弄清楚如何获取自定义组件的innerHTML
。
代码:
Vue.component('my-alert', {
template: '#vue-alert',
props: ['type', 'title', 'message'],
created: function() {
this.message = this.innerHTML; // <---- NOT WORKING
}
});
var vm = new Vue({
el: 'body'
});
HTML:
<my-alert type="success" title="Important">My Message here.</my-alert>
我想显示组件中提供的任何文本,在这种情况下,它应显示My Message here.
答案 0 :(得分:6)
好的,我发现,我需要使用<slot></slot>
。
<template id="vue-alert">
<div v-if="show" class="alert alert-{{type}} alert-dismissible" role="alert">
<button @click="removeAlert" type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span>
</button>
<strong>{{title}}!</strong> <slot></slot>
</div>
</template>