mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-02 10:04:42 +02:00
7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
import Vue from 'vue'
|
|
import Server from '../Server'
|
|
|
|
Vue.prototype.$server = null
|
|
export default function ({ store }) {
|
|
Vue.prototype.$server = new Server(store)
|
|
}
|