-
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.
refactor: use vue3 instead of preact
- Loading branch information
Showing
33 changed files
with
1,008 additions
and
994 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,7 +1,9 @@ | ||
{ | ||
"semi": true, | ||
"singleQuote": true, | ||
"printWidth": 80, | ||
"tabWidth": 2, | ||
"trailingComma": "es5", | ||
"printWidth": 100 | ||
"bracketSpacing": true, | ||
"vueIndentScriptAndStyle": true | ||
} |
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,25 @@ | ||
<!doctype html> | ||
<html lang="zh-CN"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<meta name="description" content="在线象棋棋盘识别与分析系统,提供棋局识别、FEN生成、最佳走法分析等功能。" /> | ||
<meta name="keywords" content="象棋,棋盘识别,象棋分析,FEN,最佳走法,中国象棋" /> | ||
<meta name="author" content="@iFwu" /> | ||
<meta name="theme-color" content="#4a4a4a" /> | ||
<meta property="og:title" content="象棋棋盘识别与分析系统" /> | ||
<meta property="og:description" content="在线象棋棋盘识别与分析系统,提供棋局识别、FEN生成、最佳走法分析等功能。" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://ifwu.github.io/xiangqi-analysis/" /> | ||
%VITE_UMAMI_SCRIPT% | ||
<title>象棋棋盘识别与分析系统 | 在线象棋分析工具</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" | ||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<meta name="description" content="在线象棋棋盘识别与分析系统,提供棋局识别、FEN生成、最佳走法分析等功能。" /> | ||
<meta name="keywords" content="象棋,棋盘识别,象棋分析,FEN,最佳走法,中国象棋" /> | ||
<meta name="author" content="@iFwu" /> | ||
<meta name="theme-color" content="#4a4a4a" /> | ||
<meta property="og:title" content="象棋棋盘识别与分析系统" /> | ||
<meta property="og:description" content="在线象棋棋盘识别与分析系统,提供棋局识别、FEN生成、最佳走法分析等功能。" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://ifwu.github.io/xiangqi-analysis/" /> | ||
%VITE_UMAMI_SCRIPT% | ||
<title>象棋棋盘识别与分析系统 | 在线象棋分析工具</title> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></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
Oops, something went wrong.