advplyr.audiobookshelf-app/plugins/server.js

8 lines
167 B
JavaScript
Raw Normal View History

2021-09-01 20:07:11 -05:00
import Vue from 'vue'
import Server from '../Server'
Vue.prototype.$server = null
export default function ({ store }) {
Vue.prototype.$server = new Server(store)
}