-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: initially complete typescript support
- Loading branch information
Showing
33 changed files
with
651 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,212 @@ | ||
<script setup lang="ts"> | ||
// This starter template is using Vue 3 <script setup> SFCs | ||
// Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup | ||
import HelloWorld from './components/HelloWorld.vue' | ||
</script> | ||
|
||
<template> | ||
<img alt="Vue logo" src="./assets/logo.png" /> | ||
<HelloWorld msg="Hello Vue 3 + TypeScript + Vite" /> | ||
<!-- Header --> | ||
<!-- 头部 --> | ||
<div class="header" data-wails-drag> | ||
<!-- navigation --> | ||
<!-- 导航 --> | ||
<div class="nav" data-wails-no-drag> | ||
<router-link to="/">{{ "Home" }}</router-link> | ||
<router-link to="/about">{{ "About" }}</router-link> | ||
</div> | ||
<!-- Menu --> | ||
<!-- 菜单 --> | ||
<div class="menu" data-wails-no-drag> | ||
<!-- <div class="language"> | ||
<div | ||
v-for="item in languages" | ||
:key="item" | ||
:class="{ active: item === locale }" | ||
@click="onclickLanguageHandle(item)" | ||
class="lang-item" | ||
> | ||
{{ $t("languages." + item) }} | ||
</div> | ||
</div> --> | ||
<div class="bar"> | ||
<div class="bar-btn" @click="onclickMinimise"> | ||
{{ "Minimise" }} | ||
</div> | ||
<div class="bar-btn" @click="onclickQuit">{{ "Quit" }}</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Page --> | ||
<!-- 页面 --> | ||
<div class="view"> | ||
<router-view /> | ||
</div> | ||
</template> | ||
|
||
<style> | ||
<script lang="ts"> | ||
import { ref, watch } from "vue"; | ||
// import i18n from "@/i18n"; | ||
export default { | ||
setup() { | ||
// List of supported languages | ||
// 支持的语言列表 | ||
// const languages = i18n.global.availableLocales; | ||
// Current language | ||
// 当前语言 | ||
// const locale = ref("zh-Hans"); | ||
// locale.value = i18n.global.locale; | ||
// Click to switch language | ||
// 点击切换语言 | ||
// const onclickLanguageHandle = (item) => { | ||
// item !== locale.value ? (locale.value = item) : false; | ||
// }; | ||
// Monitor current language changes | ||
// 监听当前语言变动 | ||
// watch(locale, (newValue, oldValue) => { | ||
// i18n.global.locale = newValue; | ||
// }); | ||
const onclickMinimise = () => { | ||
window.runtime.WindowMinimise(); | ||
}; | ||
const onclickQuit = () => { | ||
window.runtime.Quit(); | ||
}; | ||
return { | ||
// languages, | ||
// locale, | ||
// onclickLanguageHandle, | ||
onclickMinimise, | ||
onclickQuit, | ||
}; | ||
}, | ||
}; | ||
</script> | ||
|
||
<style lang="scss"> | ||
@import url("./assets/css/reset.css"); | ||
@import url("./assets/css/font.css"); | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
body { | ||
width: 100%; | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
font-family: "JetBrainsMono"; | ||
background-color: transparent; | ||
} | ||
#app { | ||
font-family: Avenir, Helvetica, Arial, sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
text-align: center; | ||
color: #2c3e50; | ||
margin-top: 60px; | ||
position: relative; | ||
// width: 900px; | ||
// height: 520px; | ||
height: 100%; | ||
margin-right: 1px; | ||
border-radius: 6px; | ||
background-color: rgba(219,188,239,.9); | ||
overflow: hidden; | ||
} | ||
.header { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: nowrap; | ||
align-items: center; | ||
justify-content: space-between; | ||
height: 50px; | ||
padding: 0 10px; | ||
background-color: rgba(171,126,220,.9); | ||
.nav { | ||
a { | ||
display: inline-block; | ||
min-width: 50px; | ||
height: 30px; | ||
line-height: 30px; | ||
padding: 0 5px; | ||
margin-right: 8px; | ||
background-color: #ab7edc; | ||
border-radius: 2px; | ||
text-align: center; | ||
text-decoration: none; | ||
color: #000000; | ||
font-size: 14px; | ||
white-space: nowrap; | ||
&:hover, | ||
&.router-link-exact-active { | ||
background-color: #d7a8d8; | ||
color: #ffffff; | ||
} | ||
} | ||
} | ||
.menu { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: nowrap; | ||
align-items: center; | ||
justify-content: space-between; | ||
.language { | ||
margin-right: 20px; | ||
border-radius: 2px; | ||
background-color: #c3c3c3; | ||
overflow: hidden; | ||
.lang-item { | ||
display: inline-block; | ||
min-width: 50px; | ||
height: 30px; | ||
line-height: 30px; | ||
padding: 0 5px; | ||
background-color: transparent; | ||
text-align: center; | ||
text-decoration: none; | ||
color: #000000; | ||
font-size: 14px; | ||
&:hover { | ||
background-color: #ff050542; | ||
cursor: pointer; | ||
} | ||
&.active { | ||
background-color: #ff050542; | ||
color: #ffffff; | ||
cursor: not-allowed; | ||
} | ||
} | ||
} | ||
.bar { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: nowrap; | ||
align-items: center; | ||
justify-content: flex-end; | ||
min-width: 150px; | ||
.bar-btn { | ||
display: inline-block; | ||
min-width: 80px; | ||
height: 30px; | ||
line-height: 30px; | ||
padding: 0 5px; | ||
margin-left: 8px; | ||
background-color: #ab7edc; | ||
border-radius: 2px; | ||
text-align: center; | ||
text-decoration: none; | ||
color: #000000; | ||
font-size: 14px; | ||
&:hover { | ||
background-color: #d7a8d8; | ||
color: #ffffff; | ||
cursor: pointer; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
.view { | ||
position: absolute; | ||
top: 50px; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
overflow: hidden; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@font-face { | ||
font-family: "JetBrainsMono"; | ||
src: url("../fonts/JetBrainsMono-Medium.woff2"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
html, | ||
body, | ||
div, | ||
span, | ||
applet, | ||
object, | ||
iframe, | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6, | ||
p, | ||
blockquote, | ||
pre, | ||
a, | ||
abbr, | ||
acronym, | ||
address, | ||
big, | ||
cite, | ||
code, | ||
del, | ||
dfn, | ||
em, | ||
img, | ||
ins, | ||
kbd, | ||
q, | ||
s, | ||
samp, | ||
small, | ||
strike, | ||
strong, | ||
sub, | ||
sup, | ||
tt, | ||
var, | ||
b, | ||
u, | ||
i, | ||
center, | ||
dl, | ||
dt, | ||
dd, | ||
ol, | ||
ul, | ||
li, | ||
fieldset, | ||
form, | ||
label, | ||
legend, | ||
table, | ||
caption, | ||
tbody, | ||
tfoot, | ||
thead, | ||
tr, | ||
th, | ||
td, | ||
article, | ||
aside, | ||
canvas, | ||
details, | ||
embed, | ||
figure, | ||
figcaption, | ||
footer, | ||
header, | ||
hgroup, | ||
menu, | ||
nav, | ||
output, | ||
ruby, | ||
section, | ||
summary, | ||
time, | ||
mark, | ||
audio, | ||
video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font-size: 100%; | ||
font: inherit; | ||
vertical-align: baseline; | ||
} | ||
/* HTML5 display-role reset for older browsers */ | ||
article, | ||
aside, | ||
details, | ||
figcaption, | ||
figure, | ||
footer, | ||
header, | ||
hgroup, | ||
menu, | ||
nav, | ||
section { | ||
display: block; | ||
} | ||
body { | ||
line-height: 1; | ||
} | ||
ol, | ||
ul { | ||
list-style: none; | ||
} | ||
blockquote, | ||
q { | ||
quotes: none; | ||
} | ||
blockquote:before, | ||
blockquote:after, | ||
q:before, | ||
q:after { | ||
content: ""; | ||
content: none; | ||
} | ||
table { | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.