Skip to content

Commit da9c47b

Browse files
committed
feat: add required things to start developing launch & download
Signed-off-by: Kaeeraa <[email protected]>
1 parent d3284d0 commit da9c47b

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

src/lib/launcher/core/download.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// TODO

src/lib/launcher/core/launch.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// TODO

src/pages/Home.vue

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,28 @@
11
<script setup lang="ts">
22
import { Routes } from "@/constants/routes";
33
import { RouterLink } from "@kitbag/router";
4+
5+
async function download() { /* TODO */ }
6+
async function run() { /* TODO */ }
47
</script>
58

9+
// TODO: remove temp styles
10+
<style lang="css">
11+
button {
12+
margin: 3px;
13+
background-color: lightgray;
14+
}
15+
a h1 h2 h3 h4 h5 h6 text {
16+
background-color: aliceblue;
17+
}
18+
</style>
19+
620
<template>
721
<div>
822
Home
923
</div>
24+
<button @click="download">uh, download</button>
25+
<button @click="run">run</button>
1026
<RouterLink :to="(resolve) => resolve(Routes.About.Key)">
1127
Navigate to About
1228
</RouterLink>

0 commit comments

Comments
 (0)