mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-07-27 06:58:37 +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)
|
|
}
|