Skip to content

Commit 532d04e

Browse files
committed
update
1 parent de8613a commit 532d04e

22 files changed

+9099
-626
lines changed

.gitignore

Lines changed: 20 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,23 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
yarn.lock
8-
9-
# Runtime data
10-
pids
11-
*.pid
12-
*.seed
13-
*.pid.lock
14-
15-
# Directory for instrumented libs generated by jscoverage/JSCover
16-
lib-cov
17-
18-
# Coverage directory used by tools like istanbul
19-
coverage
20-
21-
# nyc test coverage
22-
.nyc_output
23-
24-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
25-
.grunt
26-
27-
# Bower dependency directory (https://bower.io/)
28-
bower_components
29-
30-
# node-waf configuration
31-
.lock-wscript
1+
.DS_Store
2+
node_modules
3+
/dist
324

33-
# Compiled binary addons (https://nodejs.org/api/addons.html)
34-
build/Release
355

36-
# Dependency directories
37-
node_modules/
38-
jspm_packages/
6+
# local env files
7+
.env.local
8+
.env.*.local
399

40-
# TypeScript v1 declaration files
41-
typings/
42-
43-
# Optional npm cache directory
44-
.npm
45-
46-
# Optional eslint cache
47-
.eslintcache
48-
49-
# Optional REPL history
50-
.node_repl_history
51-
52-
# Output of 'npm pack'
53-
*.tgz
54-
55-
# Yarn Integrity file
56-
.yarn-integrity
57-
58-
# dotenv environment variables file
59-
.env
60-
61-
# next.js build output
62-
.next
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

LICENSE

Lines changed: 0 additions & 201 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
这是一个简单的翻页倒计时vue组件,项目中有用到,所以提取了一下。<br/>
66
你们也可以直接把`src/app.vue`文件拷贝到项目里直接用,就是个普通vue组件,就不用`npm install`
77

8+
# 注意:vue2.x 和 vue3.x
9+
**vue-flip-down 1.x的版本仅适用于vue2.x**<br/>
10+
**vue-flip-down 3.x的版本仅适用于vue3.x**
11+
812
### 示例
913
![img](public/demo.gif)
1014

@@ -16,10 +20,6 @@
1620
```
1721
npm install vue-flip-down --save
1822
```
19-
20-
```
21-
yarn add vue-flip-down
22-
```
2323

2424
### 使用
2525
```vue

babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: ["@vue/cli-plugin-babel/preset"],
3+
};

0 commit comments

Comments
 (0)