Skip to content

Instantly share code, notes, and snippets.

@zackproser
Created November 17, 2019 21:19
Show Gist options
  • Save zackproser/83b9318da4328ef84dbe4e77d94ed186 to your computer and use it in GitHub Desktop.
Save zackproser/83b9318da4328ef84dbe4e77d94ed186 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
Vue.mixin({
methods: {
getClassType () {
let c = [
'default',
'primary',
'info',
'success',
'danger',
'warning'
]
return c[Math.floor(Math.random() * c.length)]
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment