You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

userManagementPage.vue 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <!-- <section class="intro-single"> -->
  3. <div class="container">
  4. <br />
  5. <br />
  6. <br />
  7. <br />
  8. <div class="row">
  9. <div class="col-md-12 col-lg-8">
  10. <!-- <div class="title-single-box"> -->
  11. <!-- <h1 class="title-single" style="text-align:left;">User Management</h1> -->
  12. <!-- </div> -->
  13. <div class="title-box-d">
  14. <h1 class="title-d" style="text-align:left; font-size: 250%">User Management</h1>
  15. </div>
  16. <br />
  17. </div>
  18. </div>
  19. <div id="table" class="col-xs-12 table-responsive">
  20. <datatable :columns="columns" :data="rows"></datatable>
  21. </div>
  22. </div>
  23. <!-- </section> -->
  24. </template>
  25. <script>
  26. import { mapState, mapActions } from 'vuex';
  27. export default {
  28. name: 'userManagementPage',
  29. created() {
  30. this.getuserManagementPage();
  31. },
  32. computed: {
  33. ...mapState('status', ['userManagementPage']),
  34. },
  35. methods: {
  36. ...mapActions('status', ['getuserManagementPage']),
  37. },
  38. };
  39. </script>
  40. <style>
  41. </style>