admin-fe/src/views/users/index.vue

23 lines
259 B
Vue
Raw Normal View History

2019-02-22 18:06:48 +00:00
<template>
<div class="users-container">
123
</div>
</template>
<script>
2019-02-23 21:40:26 +00:00
2019-02-22 18:06:48 +00:00
export default {
name: 'Users',
data: function() {
return {
users: []
}
2019-02-23 21:40:26 +00:00
},
mounted: function() {
this.$store.dispatch('FetchUsers')
2019-02-22 18:06:48 +00:00
}
}
2019-02-23 21:40:26 +00:00
2019-02-22 18:06:48 +00:00
</script>