vuetify
Version:
Vue.js 2 Semantic Component Framework
36 lines (32 loc) • 697 B
JavaScript
/**
* Loadable
*
* @mixin
*
* Used to add linear progress bar to components
* Can use a default bar with a specific color
* or designate a custom progress linear bar
*/
export default {
name: 'loadable',
props: {
loading: {
type: [Boolean, String],
default: false
}
},
methods: {
genProgress () {
if (this.loading === false) return null
return this.$slots.progress || this.$createElement('v-progress-linear', {
props: {
color: (this.loading === true || this.loading === '')
? (this.color || 'primary')
: this.loading,
height: 2,
indeterminate: true
}
})
}
}
}