traefik/webui/src/_middleware/Boot.js

29 lines
411 B
JavaScript
Raw Normal View History

2019-08-26 16:15:41 +00:00
import { APP } from '../_helpers/APP'
const Boot = {
install (Vue, options) {
Vue.mixin({
data () {
return {
}
},
computed: {
api () {
return APP.config.apiUrl
},
env () {
return APP.config.env
}
},
methods: {
},
filters: {
},
created () {
}
})
}
}
export default Boot