summaryrefslogtreecommitdiffstats
path: root/settings/src/main-admin-security.js
blob: 711325d57b031f17700d411fbf14b9de537d53f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Vue from 'vue'

import AdminTwoFactor from './components/AdminTwoFactor'

Vue.prototype.t = t;

new Vue({
	el: '#two-factor-auth-settings',
	template: '<AdminTwoFactor/>',
	components: {
		AdminTwoFactor
	}
})