mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-23 13:48:47 +02:00
8 lines
167 B
JavaScript
8 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)
|
||
|
}
|