7882be160a
Fixes https://github.com/nextcloud/server/issues/11034. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
9 lines
206 B
JavaScript
9 lines
206 B
JavaScript
import Vue from 'vue';
|
|
import PersonalSettings from './views/PersonalSettings';
|
|
|
|
Vue.prototype.t = t;
|
|
|
|
export default new Vue({
|
|
el: '#twofactor-backupcodes-settings',
|
|
render: h => h(PersonalSettings)
|
|
});
|