mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-04-14 11:36:27 +00: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)
|
|
}
|