forked from urchinfs/urfsclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d98375d
commit 9987bc6
Showing
10 changed files
with
365 additions
and
626 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,18 +1,27 @@ | ||
<script setup lang="ts"> | ||
import Upload from "./components/Upload.vue"; | ||
import zhCN from 'ant-design-vue/es/locale/zh_CN'; | ||
const locale = zhCN; | ||
</script> | ||
|
||
<template> | ||
<div id="app"> | ||
<router-view /> | ||
</div> | ||
<a-config-provider :locale="locale"> | ||
<div class="container"> | ||
<h1>Welcome to Tauri!</h1> | ||
|
||
<Upload /> | ||
</div> | ||
</a-config-provider> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'App' | ||
<style scoped> | ||
.container { | ||
text-align: center; | ||
} | ||
</script> | ||
<style> | ||
body{ | ||
margin: 0; | ||
min-width: 900px; | ||
} | ||
</style> | ||
</style> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.