This commit is contained in:
Aya Morisawa 2018-08-14 01:35:36 +09:00
parent ba9340a26b
commit 92e5cff285
2 changed files with 11 additions and 1 deletions

View file

@ -903,7 +903,7 @@ desktop/views/pages/admin/admin.vue:
users: "ユーザー"
update: "更新"
desktop/views/paages/admin/admin.dashboard.vue:
desktop/views/pages/admin/admin.dashboard.vue:
dashboard: "ダッシュボード"
all-users: "全てのユーザー"
original-users: "このインスタンスのユーザー"

View file

@ -30,6 +30,16 @@ export default Vue.extend({
components: {
XDashboard,
XSuspendUser
},
data() {
return {
page: 'dashboard'
};
},
methods: {
nav(page: string) {
this.page = page;
}
}
});
</script>