Created
November 17, 2019 21:19
-
-
Save zackproser/83b9318da4328ef84dbe4e77d94ed186 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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