Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sizeable.js 291B

1234567891011121314
  1. import Vue from 'vue';
  2. export default Vue.extend({
  3. name: 'sizeable',
  4. props: {
  5. large: Boolean,
  6. medium: Boolean,
  7. size: {
  8. type: [Number, String]
  9. },
  10. small: Boolean,
  11. xLarge: Boolean
  12. }
  13. });
  14. //# sourceMappingURL=sizeable.js.map