-
Notifications
You must be signed in to change notification settings - Fork 565
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
yupili
committed
Sep 16, 2022
0 parents
commit 9001cd7
Showing
25 changed files
with
3,741 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
node: true, | ||
}, | ||
extends: ["plugin:vue/vue3-recommended", "plugin:prettier/recommended"], | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
parser: "@typescript-eslint/parser", | ||
sourceType: "module", | ||
}, | ||
plugins: ["vue", "@typescript-eslint", "prettier"], | ||
rules: { | ||
"prettier/prettier": "error", | ||
}, | ||
}; |
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,25 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
.vercel |
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,3 @@ | ||
{ | ||
"recommendations": ["Vue.volar"] | ||
} |
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 @@ | ||
被羊了个羊虐了后,我自己做了一个! | ||
|
||
|
||
|
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,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/logo.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"name": "yulegeyu", | ||
"private": true, | ||
"version": "0.0.0", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vue-tsc --noEmit && vite build", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"ant-design-vue": "^3.2.11", | ||
"lodash": "^4.17.21", | ||
"pinia": "^2.0.19", | ||
"pinia-plugin-persistedstate": "^2.1.1", | ||
"vue": "^3.2.37", | ||
"vue-router": "4" | ||
}, | ||
"devDependencies": { | ||
"@types/lodash": "^4.14.185", | ||
"@typescript-eslint/eslint-plugin": "^5.23.0", | ||
"@typescript-eslint/parser": "^5.23.0", | ||
"@vitejs/plugin-vue": "^3.0.3", | ||
"eslint": "^8.15.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-config-standard": "^17.0.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-n": "^15.2.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-plugin-promise": "^6.0.0", | ||
"eslint-plugin-vue": "^8.7.1", | ||
"prettier": "^2.7.1", | ||
"typescript": "^4.6.4", | ||
"vite": "^3.0.7", | ||
"vue-tsc": "^0.39.5" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,41 @@ | ||
<template> | ||
<div id="app"> | ||
<div class="content"> | ||
<router-view /> | ||
</div> | ||
<div class="footer"> | ||
鱼了个鱼 ©2022 by | ||
<a href="https://github.com/liyupi" target="_blank" style="color: #fff"> | ||
程序员鱼皮 | ||
</a> | ||
| | ||
<a | ||
href="https://github.com/liyupi/yulegeyu" | ||
target="_blank" | ||
style="color: #fff" | ||
> | ||
代码开源 | ||
</a> | ||
</div> | ||
</div> | ||
</template> | ||
<script setup lang="ts"></script> | ||
<style scoped> | ||
#app { | ||
padding: 16px 16px 50px; | ||
background: url("assets/bg.jpeg"); | ||
height: 100vh; | ||
background-size: 100% 100%; | ||
} | ||
.footer { | ||
background: rgba(0, 0, 0, 0.6); | ||
color: #fff; | ||
padding: 12px; | ||
text-align: center; | ||
position: fixed; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
} | ||
</style> |
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 @@ | ||
import { RouteRecordRaw } from "vue-router"; | ||
import IndexPage from "../pages/IndexPage.vue"; | ||
|
||
export default [ | ||
{ | ||
path: "/", | ||
component: IndexPage, | ||
}, | ||
] as RouteRecordRaw[]; |
Oops, something went wrong.