riku
2023-11-23 348d29c1cd601e269eae92e6ec55d31e77b3ecd0
1
2
3
4
5
6
7
export function useTableHeight(top=0,pagination =0,h3=0,h4=0,h5=0){
    const tableHeight = ref(0)
    tableHeight.value = 300
    tableHeight.value = `calc(100vh - ${top}px - ${pagination}px - ${h3}px - ${h4}px - ${h5}px - 45px)`
    
    return tableHeight
}