maestro-server/bootue

View on GitHub
src/label/script.js

Summary

Maintainability
A
0 mins
Test Coverage
export default {
  props: {
    type: {type: String, default: "primary"}
  },

  methods: {
    sizeClass () {
      return `label-${this.type}`
    }
  }
}