<div id="app" class="m-2">
<x-button type="danger">
</x-button>
</div>
Vue.component('x-button', {
props: ['type'],
computed: {
className: function() {
return `btn-${this.type}`;
},
},
template: `
<button
type="button"
:class="['btn', className]"
@click="$emit('click', $event)"
>
<slot>Action</slot>
</button>
`
});
var vue = new Vue({
el: "#app"
});