├── .browserslistrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .husky ├── common.sh ├── lintstagedrc.js └── pre-commit ├── .npmrc ├── .prettierignore ├── LICENSE ├── README.md ├── alias.config.js ├── iTab ├── .vuepress │ ├── config.js │ └── public │ │ └── logo64.png └── index.md ├── jetbrains.svg ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── tailwind.config.js └── yur ├── assets ├── img │ ├── logo64.png │ └── wallpaper.jpg └── video │ └── wallpaper.webm ├── clientAppEnhance.js ├── components ├── ITab.vue ├── Sidebar.vue ├── View.vue └── Wallpaper.vue ├── configs └── theme.js ├── hooks ├── useScrollBehavior.js └── useThemeConfig.js ├── index.js ├── layouts ├── 404.vue └── Layout.vue ├── styles ├── default.less ├── index.less └── transitions │ ├── index.less │ └── scroll-y.less └── templates ├── index.build.html └── index.dev.html /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | !docs 2 | !yur 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.husky/common.sh -------------------------------------------------------------------------------- /.husky/lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.husky/lintstagedrc.js -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | !docs 2 | !yur 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/README.md -------------------------------------------------------------------------------- /alias.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/alias.config.js -------------------------------------------------------------------------------- /iTab/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/iTab/.vuepress/config.js -------------------------------------------------------------------------------- /iTab/.vuepress/public/logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/iTab/.vuepress/public/logo64.png -------------------------------------------------------------------------------- /iTab/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | title: 主页 4 | 5 | --- 6 | -------------------------------------------------------------------------------- /jetbrains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/jetbrains.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/prettier.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yur/assets/img/logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/assets/img/logo64.png -------------------------------------------------------------------------------- /yur/assets/img/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/assets/img/wallpaper.jpg -------------------------------------------------------------------------------- /yur/assets/video/wallpaper.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/assets/video/wallpaper.webm -------------------------------------------------------------------------------- /yur/clientAppEnhance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/clientAppEnhance.js -------------------------------------------------------------------------------- /yur/components/ITab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/components/ITab.vue -------------------------------------------------------------------------------- /yur/components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/components/Sidebar.vue -------------------------------------------------------------------------------- /yur/components/View.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/components/View.vue -------------------------------------------------------------------------------- /yur/components/Wallpaper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/components/Wallpaper.vue -------------------------------------------------------------------------------- /yur/configs/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/configs/theme.js -------------------------------------------------------------------------------- /yur/hooks/useScrollBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/hooks/useScrollBehavior.js -------------------------------------------------------------------------------- /yur/hooks/useThemeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/hooks/useThemeConfig.js -------------------------------------------------------------------------------- /yur/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/index.js -------------------------------------------------------------------------------- /yur/layouts/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/layouts/404.vue -------------------------------------------------------------------------------- /yur/layouts/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/layouts/Layout.vue -------------------------------------------------------------------------------- /yur/styles/default.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/styles/default.less -------------------------------------------------------------------------------- /yur/styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/styles/index.less -------------------------------------------------------------------------------- /yur/styles/transitions/index.less: -------------------------------------------------------------------------------- 1 | @import './scroll-y.less'; 2 | -------------------------------------------------------------------------------- /yur/styles/transitions/scroll-y.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/styles/transitions/scroll-y.less -------------------------------------------------------------------------------- /yur/templates/index.build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/templates/index.build.html -------------------------------------------------------------------------------- /yur/templates/index.dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnguu/vuepress-theme-yur/HEAD/yur/templates/index.dev.html --------------------------------------------------------------------------------