mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 00:06:01 +00:00
16 lines
245 B
Svelte
16 lines
245 B
Svelte
<script lang="ts">
|
|
import getElectron from '../../utility/getElectron';
|
|
|
|
const electron = getElectron();
|
|
export let row;
|
|
</script>
|
|
|
|
<a
|
|
href="#"
|
|
on:click={() => {
|
|
electron.remote.shell.showItemInFolder(row.path);
|
|
}}
|
|
>
|
|
show
|
|
</a>
|