fc69ae30ab
* feat: depot api downloads * feat: frontend fixes and experimental webview store * feat: sync downloader * feat: cleanup and fixes * feat: encrypted database and fixed resuming * feat: launch option selector * fix: autostart when no options * fix: clippy * fix: clippy x2 * feat: executor launch * feat: executor launch * feat: not installed error handling * feat: better offline handling * feat: dependency popup * fix: cancelation and resuming issues * feat: dedup by platform * feat: new ui for additional components and fix dl manager clog * feat: auto-queue dependencies * feat: depot scanning and ranking * feat: new library fetching stack * In-app store page (Windows + macOS) (#176) * feat: async store loading * feat: fix overscroll behaviour * fix: query params in server protocol * fix: clippy
13 lines
346 B
Vue
13 lines
346 B
Vue
<template>
|
|
<iframe :src="convertedStoreUrl" class="grow w-full h-full" />
|
|
</template>
|
|
<script setup lang="ts">
|
|
import {
|
|
ArrowTopRightOnSquareIcon,
|
|
BuildingStorefrontIcon,
|
|
} from "@heroicons/vue/20/solid";
|
|
import { convertFileSrc, invoke } from "@tauri-apps/api/core";
|
|
|
|
const convertedStoreUrl = convertFileSrc("store", "server");
|
|
</script>
|