Skip to content

Commit

Permalink
electron
Browse files Browse the repository at this point in the history
  • Loading branch information
xingwei committed May 23, 2024
0 parents commit d0019fa
Show file tree
Hide file tree
Showing 36 changed files with 10,069 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
# dist
dist-ssr
coverage
*.local
.history

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

*.tsbuildinfo

out/
.env
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar"]
}
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

# eat-what
纠结吃啥的,来啊~

# eat-what-app

This template should help get you started developing with Vue 3 in Vite.

## Recommended IDE Setup

[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).

## Type Support for `.vue` Imports in TS

TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.

## Customize configuration

See [Vite Configuration Reference](https://vitejs.dev/config/).

## Project Setup

```sh
npm install
```

### Compile and Hot-Reload for Development

```sh
npm run dev
```

### Type-Check, Compile and Minify for Production

```sh
npm run build
```

9 changes: 9 additions & 0 deletions auto-imports.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// noinspection JSUnusedGlobalSymbols
// Generated by unplugin-auto-import
export {}
declare global {
const ElLoading: typeof import('element-plus/es')['ElLoading']
}
23 changes: 23 additions & 0 deletions components.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* eslint-disable */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}

/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
Blindbox: typeof import('./src/components/Blindbox.vue')['default']
Custom: typeof import('./src/components/Custom.vue')['default']
ElButton: typeof import('element-plus/es')['ElButton']
ElCard: typeof import('element-plus/es')['ElCard']
ElEmpty: typeof import('element-plus/es')['ElEmpty']
ElScrollbar: typeof import('element-plus/es')['ElScrollbar']
ElTag: typeof import('element-plus/es')['ElTag']
IEpArrowLeft: typeof import('~icons/ep/arrow-left')['default']
IEpArrowRight: typeof import('~icons/ep/arrow-right')['default']
IEpCircleCloseFilled: typeof import('~icons/ep/circle-close-filled')['default']
Jiugongge: typeof import('./src/components/Jiugongge.vue')['default']
OpenSpecialEffects: typeof import('./src/components/OpenSpecialEffects.vue')['default']
}
}
1 change: 1 addition & 0 deletions dist/assets/Blindbox-D91Q6BCd.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions dist/assets/Blindbox-jX6xwIFJ.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/Custom-DBaw-_MK.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/assets/Custom-DbCWHdfl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added dist/assets/bg-DEOgByrv.webp
Binary file not shown.
Loading

0 comments on commit d0019fa

Please sign in to comment.