Refactor dialogDetail variable names in Vue components

This commit is contained in:
Dede Fuji Abdul
2024-03-20 17:10:15 +07:00
parent 9d75cdf7c2
commit b472cd29a7
27 changed files with 547 additions and 180 deletions

View File

@ -164,7 +164,7 @@ const shading = ref(true)
const showPane = ref(true)
const dataDetail = ref<any>()
const data = ref<any[]>([])
const showDetail = ref(false)
const dialogDetail = ref(false)
const onExporting = (e: any) => {
if (e.format === 'pdf') {
@ -268,8 +268,8 @@ const onSelectionChanged = ({ selectedRowsData }: any) => {
dataDetail.value = data
console.log(data)
}
const showData = () => {
showDetail.value = true
const showDetail = () => {
dialogDetail.value = true
}
const filters = ref()
</script>