forked from imsyy/SNav
-
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
Showing
24 changed files
with
451 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,30 @@ | ||
<!doctype html> | ||
<html lang="zh-CN"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="favicon.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Snavigation</title> | ||
<!-- HarmonyOS Sans --> | ||
<link rel="stylesheet" href="https://s1.hdslb.com/bfs/static/jinkela/long/font/regular.css" /> | ||
<!-- IE Out --> | ||
<script> | ||
if ( | ||
/*@cc_on!@*/ | ||
false || | ||
(!!window.MSInputMethodContext && !!document.documentMode) | ||
) | ||
window.location.href = | ||
"https://support.dmeng.net/upgrade-your-browser.html?referrer=" + | ||
encodeURIComponent(window.location.href); | ||
</script> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="favicon.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Snavigation</title> | ||
<!-- HarmonyOS Sans --> | ||
<link rel="stylesheet" href="https://s1.hdslb.com/bfs/static/jinkela/long/font/regular.css" /> | ||
<!-- IE Out --> | ||
<script> | ||
if ( | ||
/*@cc_on!@*/ | ||
false || | ||
(!!window.MSInputMethodContext && !!document.documentMode) | ||
) | ||
window.location.href = | ||
"https://support.dmeng.net/upgrade-your-browser.html?referrer=" + | ||
encodeURIComponent(window.location.href); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<script src="/lib/iconfont.js" async></script> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
|
||
</html> |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- 全局设置 --> | ||
<template> | ||
<n-tabs class="func" size="large" justify-content="space-evenly" animated> | ||
<n-tab-pane name="link" tab="捷径"> 即将完善 </n-tab-pane> | ||
<n-tab-pane name="note" tab="便签"> 即将完善 </n-tab-pane> | ||
<n-tab-pane name="more" tab="还能有啥"> 还能有啥呢 😢 </n-tab-pane> | ||
</n-tabs> | ||
</template> | ||
|
||
<script setup> | ||
import { NTabs, NTabPane } from "naive-ui"; | ||
</script> |
Oops, something went wrong.