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.

8 lines
221 B

3 years ago
  1. import Toast from './Toast.js'
  2. import Route from './Route.js'
  3. export default function install (Vue) {
  4. Vue.prototype.$toast = Toast
  5. for (let key in Route) Vue.prototype[`$${key}`.toLowerCase()] = Route[key]
  6. }