Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zzd committed Dec 14, 2023
1 parent d079651 commit ee39af2
Show file tree
Hide file tree
Showing 18 changed files with 1,067 additions and 20,099 deletions.
5 changes: 5 additions & 0 deletions .coding-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
$:
api_trigger_vscode:
clouddev:
runner:
cpus: 1
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BASE_URL="/"
29 changes: 18 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
# 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

/cypress/videos/
/cypress/screenshots/

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

*.tsbuildinfo
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

43 changes: 21 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,41 +4,40 @@
</a>
</p>
<p align="center">
<img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/616620131/Simple-Search-Page">
<img alt="GitHub All Releases" src="https://img.shields.io/github/downloads/616620131/Simple-Search-Page/total">
<img alt="GitHub All Releases" src="https://img.shields.io/github/downloads/616620131/Simple-Search-Page/latest/total">
<a href="https://github.com/616620131/Simple-Search-Page/blob/master/LICENSE"><img alt="GitHub license" src="https://img.shields.io/github/license/616620131/Simple-Search-Page"></a>
<a href="https://github.com/616620131/Simple-Search-Page/stargazers"><img alt="GitHub stars" src="https://img.shields.io/github/stars/616620131/Simple-Search-Page?style=social"></a>
<img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/zzd/Simple-Search-Page">
<img alt="GitHub All Releases" src="https://img.shields.io/github/downloads/zzd/Simple-Search-Page/total">
<img alt="GitHub All Releases" src="https://img.shields.io/github/downloads/zzd/Simple-Search-Page/latest/total">
<a href="https://github.com/zzd/Simple-Search-Page/blob/master/LICENSE"><img alt="GitHub license" src="https://img.shields.io/github/license/zzd/Simple-Search-Page"></a>
<a href="https://github.com/zzd/Simple-Search-Page/stargazers"><img alt="GitHub stars" src="https://img.shields.io/github/stars/zzd/Simple-Search-Page?style=social"></a>
</p>

# simple-search-page-vue

3.0.0新版来了,基于Vue实现。
3.0.0新版来了,基于Vue实现。
This template should help get you started developing with Vue 3 in Vite.

## Project setup
## Recommended IDE Setup

```
npm install
```
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).

### Compiles and hot-reloads for development
## Customize configuration

```
npm run serve
```
See [Vite Configuration Reference](https://vitejs.dev/config/).

### Compiles and minifies for production
## Project Setup

```
npm run build
```sh
npm install
```

### Lints and fixes files
### Compile and Hot-Reload for Development

```
npm run lint
```sh
npm run dev
```

### Customize configuration
### Compile and Minify for Production

See [Configuration Reference](https://cli.vuejs.org/config/).
```sh
npm run build
```
5 changes: 0 additions & 5 deletions babel.config.js

This file was deleted.

26 changes: 26 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!--
~ Copyright (c) 2018-2024 ZHANGDI All Rights Reserved.
~ Author: Dizhang
~ Date: 2021-12-18 22:28:10
-->

<!DOCTYPE html>
<html lang="zh-CN">

<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
name="viewport">
<meta content="ZhangDi" name="author" />
<meta content="极简的网址导航,无广告、无干扰。" name="description" />
<meta content="简洁导航,极简导航,简洁网址导航,极简网址导航" name="keywords" />
<title>简洁主页 - 无广告不干扰</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>

</html>
8 changes: 8 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
Loading

0 comments on commit ee39af2

Please sign in to comment.