<div id="app" class="m-2">
  <x-button type="danger">
    <strong>Click</strong>
    for more info!
  </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></slot>
    </button>
  `
});

var vue = new Vue({
  el: "#app"
});

External CSS

  1. https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css

External JavaScript

  1. https://cdn.jsdelivr.net/npm/vue/dist/vue.js