mirror of
https://github.com/nextcloud/server.git
synced 2026-02-12 15:30:21 -05:00
Bumps [eslint-config-nextcloud](https://github.com/nextcloud/eslint-config-nextcloud) from 0.0.6 to 0.1.0. - [Release notes](https://github.com/nextcloud/eslint-config-nextcloud/releases) - [Commits](https://github.com/nextcloud/eslint-config-nextcloud/compare/v0.0.6...v0.1.0) Co-authored-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
20 lines
478 B
JavaScript
20 lines
478 B
JavaScript
import Vue from 'vue'
|
|
import { loadState } from '@nextcloud/initial-state'
|
|
import App from './Accessibility.vue'
|
|
|
|
/* global t */
|
|
// bind to window
|
|
Vue.prototype.OC = OC
|
|
Vue.prototype.t = t
|
|
|
|
const availableConfig = loadState('accessibility', 'available-config')
|
|
const userConfig = loadState('accessibility', 'user-config')
|
|
|
|
const View = Vue.extend(App)
|
|
const accessibility = new View({
|
|
propsData: {
|
|
availableConfig,
|
|
userConfig,
|
|
},
|
|
})
|
|
accessibility.$mount('#accessibility')
|