(data: DockerDeviceItem[] = [])
| 181 | } |
| 182 | |
| 183 | export async function useDockerDeviceEditDialog(data: DockerDeviceItem[] = []) { |
| 184 | return ( |
| 185 | (await useMountComponent({ |
| 186 | data, |
| 187 | title: t("TXT_CODE_b3a60c78"), |
| 188 | subTitle: t("TXT_CODE_b6e18b87"), |
| 189 | textarea: false |
| 190 | }).mount<DockerDeviceItem[]>(DockerDeviceDialogVue)) || [] |
| 191 | ); |
| 192 | } |
| 193 | |
| 194 | export async function openLoadingDialog(title: string, text: string, subTitle?: string) { |
| 195 | const component = useMountComponent({ |
nothing calls this directly
no test coverage detected