vectore datatable and few modifications

This commit is contained in:
sumedh
2024-08-07 12:10:50 +05:30
parent 55a547d573
commit ec5c382c3d
8 changed files with 281 additions and 172 deletions

View File

@@ -38,7 +38,7 @@ import ScrollPanel from 'primevue/scrollpanel';
import SelectButton from 'primevue/selectbutton'; // Import SelectButton
import { useToast } from 'primevue/usetoast';
import { watch, ref } from 'vue';
import CodeSnippet from './CodeSnippet.vue';
import CodeSnippet from '@/components/CodeSnippet.vue';
const query = ref('');
const dropdownItem = ref(null);
@@ -48,7 +48,8 @@ const dynamicCode = ref('');
const dropdownItems = [
{ name: 'Documentation', code: 'setup-documentation' },
{ name: 'Deploy Documentation', code: 'deploy-documentation' }
{ name: 'Deploy Documentation', code: 'deploy-documentation' },
{ name: 'SourceCode', code: 'sourcecode' }
];
const sendQuery = async () => {