mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
15 lines
238 B
Vue
15 lines
238 B
Vue
<template>
|
|
<div>Users List</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'users-list',
|
|
afterRouteEnter(to, from, next) {
|
|
debugger;
|
|
this.$store.commit('setPageTitle', this.$t('users_list'));
|
|
next();
|
|
},
|
|
}
|
|
</script>
|