Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.js « src « accessibility « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 618f4a7355f7ae363af086a9b1a935f356fec358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Vue from 'vue'
import App from './Accessibility.vue'

/* global t */
// bind to window
Vue.prototype.OC = OC
Vue.prototype.t = t

export default new Vue({
	el: '#accessibility',
	render: h => h(App)
})