Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

page.vue 377B

1234567891011121314151617181920
  1. <template>
  2. <div class="app-container">
  3. <switch-roles @change="handleRolesChange" />
  4. </div>
  5. </template>
  6. <script>
  7. import SwitchRoles from './components/SwitchRoles'
  8. export default{
  9. name: 'pagePermission',
  10. components: { SwitchRoles },
  11. methods: {
  12. handleRolesChange() {
  13. this.$router.push({ path: '/permission/index?' + +new Date() })
  14. }
  15. }
  16. }
  17. </script>