maestro-server/client-app

View on GitHub
src/components/bootue/alert/template.html

Summary

Maintainability
Test Coverage
<transition name="fade">
  <div v-show="val" :class="['alert', 'alert-'+type, placement]" :style="{width:width}" role="alert">
    <button v-show="dismissable" type="button" class="close" @click="val = false">
      <span>&times;</span>
    </button>
    <slot></slot>
  </div>
</transition>