WIP: acct mgmt search bar
This commit is contained in:
41
src/views/AccountManagement/AccountAdmin/index.vue
Normal file
41
src/views/AccountManagement/AccountAdmin/index.vue
Normal file
@@ -0,0 +1,41 @@
|
||||
<template>
|
||||
<div class="flex w-[1216px] items-center pt-2 flex-col">
|
||||
<div class="flex">Account Admin SSO/General cases</div>
|
||||
<div class="flex justify-end">
|
||||
<div class="flex">
|
||||
<SearchBar/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { storeToRefs, mapState, } from 'pinia';
|
||||
import LoadingStore from '@/stores/loading.js';
|
||||
import SearchBar from '../../../components/AccountMenu/SearchBar.vue';
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
const loadingStore = LoadingStore();
|
||||
const { isLoading } = storeToRefs(loadingStore);
|
||||
|
||||
return {
|
||||
isLoading,
|
||||
};
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
};
|
||||
},
|
||||
components: {
|
||||
SearchBar,
|
||||
},
|
||||
created() {
|
||||
|
||||
},
|
||||
mounted() {
|
||||
this.isLoading = false; //TODO:
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user