Refactor dialogDetail variable names in Vue components
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user