-
Notifications
You must be signed in to change notification settings - Fork 0
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
wangzhao
committed
Jul 31, 2018
0 parents
commit 71c9df6
Showing
61 changed files
with
34,213 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,13 @@ | ||
# editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_size = 2 | ||
indent_style = space | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,21 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
browser: true, | ||
node: true | ||
}, | ||
parserOptions: { | ||
parser: 'babel-eslint' | ||
}, | ||
extends: [ | ||
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention | ||
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules. | ||
'plugin:vue/essential' | ||
], | ||
// required to lint *.vue files | ||
plugins: [ | ||
'vue' | ||
], | ||
// add your custom rules here | ||
rules: {} | ||
} |
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,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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,11 @@ | ||
# dependencies | ||
node_modules | ||
|
||
# logs | ||
npm-debug.log | ||
|
||
# Nuxt build | ||
.nuxt | ||
|
||
# Nuxt generate | ||
dist |
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,14 @@ | ||
{ | ||
// 使用 IntelliSense 了解相关属性。 | ||
// 悬停以查看现有属性的描述。 | ||
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "启动程序", | ||
"program": "${workspaceFolder}\\readText.js" | ||
} | ||
] | ||
} |
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,31 @@ | ||
exports.hello = '18'; | ||
|
||
// console.log(module); | ||
// console.log(process); | ||
|
||
const EventEmitter = require('events'); | ||
|
||
const myEmitter = new EventEmitter(); | ||
|
||
myEmitter.once('newListener', (event, listener)=>{ | ||
console.log(event, listener); | ||
if(event == 'event') { | ||
myEmitter.on('event', ()=>{ | ||
console.log("B"); | ||
}); | ||
} | ||
}); | ||
|
||
myEmitter.on('event', ()=>{ | ||
console.log('A'); | ||
}); | ||
|
||
myEmitter.emit('event'); | ||
|
||
console.log(EventEmitter.listenerCount(myEmitter, 'event')); | ||
myEmitter.setMaxListeners(12); | ||
console.log(myEmitter.getMaxListeners()); | ||
console.log(myEmitter.eventNames()); | ||
|
||
|
||
|
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 @@ | ||
{ | ||
"a": 1 | ||
} |
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 @@ | ||
{ | ||
"b": 1 | ||
} |
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 @@ | ||
# NUXT |
Large diffs are not rendered by default.
Oops, something went wrong.
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,178 @@ | ||
0 https://www.sjtxt.la/book/73017/14645657.html | ||
1 https://www.sjtxt.la/book/73017/14645658.html | ||
2 https://www.sjtxt.la/book/73017/14645659.html | ||
3 https://www.sjtxt.la/book/73017/14645660.html | ||
4 https://www.sjtxt.la/book/73017/14645661.html | ||
5 https://www.sjtxt.la/book/73017/14645662.html | ||
6 https://www.sjtxt.la/book/73017/14645663.html | ||
7 https://www.sjtxt.la/book/73017/14645664.html | ||
8 https://www.sjtxt.la/book/73017/14645665.html | ||
9 https://www.sjtxt.la/book/73017/14645666.html | ||
10 https://www.sjtxt.la/book/73017/14645667.html | ||
11 https://www.sjtxt.la/book/73017/14645668.html | ||
12 https://www.sjtxt.la/book/73017/14645669.html | ||
13 https://www.sjtxt.la/book/73017/14645670.html | ||
14 https://www.sjtxt.la/book/73017/14645671.html | ||
15 https://www.sjtxt.la/book/73017/14645672.html | ||
16 https://www.sjtxt.la/book/73017/14645673.html | ||
17 https://www.sjtxt.la/book/73017/14645674.html | ||
18 https://www.sjtxt.la/book/73017/14645675.html | ||
19 https://www.sjtxt.la/book/73017/14645676.html | ||
20 https://www.sjtxt.la/book/73017/14645677.html | ||
21 https://www.sjtxt.la/book/73017/14645678.html | ||
22 https://www.sjtxt.la/book/73017/14645679.html | ||
23 https://www.sjtxt.la/book/73017/14645680.html | ||
24 https://www.sjtxt.la/book/73017/14645681.html | ||
25 https://www.sjtxt.la/book/73017/14645682.html | ||
26 https://www.sjtxt.la/book/73017/14645683.html | ||
27 https://www.sjtxt.la/book/73017/14645684.html | ||
28 https://www.sjtxt.la/book/73017/14645685.html | ||
29 https://www.sjtxt.la/book/73017/14645686.html | ||
30 https://www.sjtxt.la/book/73017/14645687.html | ||
31 https://www.sjtxt.la/book/73017/14645688.html | ||
32 https://www.sjtxt.la/book/73017/14645689.html | ||
33 https://www.sjtxt.la/book/73017/14645690.html | ||
34 https://www.sjtxt.la/book/73017/14645691.html | ||
35 https://www.sjtxt.la/book/73017/14645692.html | ||
36 https://www.sjtxt.la/book/73017/14645693.html | ||
37 https://www.sjtxt.la/book/73017/14645694.html | ||
38 https://www.sjtxt.la/book/73017/14645695.html | ||
39 https://www.sjtxt.la/book/73017/14645696.html | ||
40 https://www.sjtxt.la/book/73017/14645697.html | ||
41 https://www.sjtxt.la/book/73017/14645698.html | ||
42 https://www.sjtxt.la/book/73017/14645699.html | ||
43 https://www.sjtxt.la/book/73017/14645700.html | ||
44 https://www.sjtxt.la/book/73017/14645701.html | ||
45 https://www.sjtxt.la/book/73017/14645702.html | ||
46 https://www.sjtxt.la/book/73017/14645703.html | ||
47 https://www.sjtxt.la/book/73017/14645704.html | ||
48 https://www.sjtxt.la/book/73017/14645705.html | ||
49 https://www.sjtxt.la/book/73017/14645706.html | ||
50 https://www.sjtxt.la/book/73017/14645707.html | ||
51 https://www.sjtxt.la/book/73017/14645708.html | ||
52 https://www.sjtxt.la/book/73017/14645709.html | ||
53 https://www.sjtxt.la/book/73017/14645710.html | ||
54 https://www.sjtxt.la/book/73017/14645711.html | ||
55 https://www.sjtxt.la/book/73017/14645712.html | ||
56 https://www.sjtxt.la/book/73017/14645713.html | ||
57 https://www.sjtxt.la/book/73017/14645714.html | ||
58 https://www.sjtxt.la/book/73017/14645715.html | ||
59 https://www.sjtxt.la/book/73017/14645716.html | ||
60 https://www.sjtxt.la/book/73017/14645717.html | ||
61 https://www.sjtxt.la/book/73017/14645718.html | ||
62 https://www.sjtxt.la/book/73017/14645719.html | ||
63 https://www.sjtxt.la/book/73017/14645720.html | ||
64 https://www.sjtxt.la/book/73017/14645721.html | ||
65 https://www.sjtxt.la/book/73017/14645722.html | ||
66 https://www.sjtxt.la/book/73017/14645723.html | ||
67 https://www.sjtxt.la/book/73017/14645724.html | ||
68 https://www.sjtxt.la/book/73017/14645725.html | ||
69 https://www.sjtxt.la/book/73017/14645726.html | ||
70 https://www.sjtxt.la/book/73017/14645727.html | ||
71 https://www.sjtxt.la/book/73017/14645728.html | ||
72 https://www.sjtxt.la/book/73017/14645729.html | ||
73 https://www.sjtxt.la/book/73017/14645730.html | ||
74 https://www.sjtxt.la/book/73017/14645731.html | ||
75 https://www.sjtxt.la/book/73017/14645732.html | ||
76 https://www.sjtxt.la/book/73017/14645733.html | ||
77 https://www.sjtxt.la/book/73017/14645734.html | ||
78 https://www.sjtxt.la/book/73017/14645735.html | ||
79 https://www.sjtxt.la/book/73017/14645736.html | ||
80 https://www.sjtxt.la/book/73017/14645737.html | ||
81 https://www.sjtxt.la/book/73017/14645738.html | ||
82 https://www.sjtxt.la/book/73017/14645739.html | ||
83 https://www.sjtxt.la/book/73017/14645740.html | ||
84 https://www.sjtxt.la/book/73017/14645741.html | ||
85 https://www.sjtxt.la/book/73017/14645742.html | ||
86 https://www.sjtxt.la/book/73017/14645743.html | ||
87 https://www.sjtxt.la/book/73017/14645744.html | ||
88 https://www.sjtxt.la/book/73017/14645745.html | ||
89 https://www.sjtxt.la/book/73017/14645746.html | ||
90 https://www.sjtxt.la/book/73017/14645747.html | ||
91 https://www.sjtxt.la/book/73017/14645748.html | ||
92 https://www.sjtxt.la/book/73017/14645749.html | ||
93 https://www.sjtxt.la/book/73017/14645750.html | ||
94 https://www.sjtxt.la/book/73017/14645751.html | ||
95 https://www.sjtxt.la/book/73017/14645752.html | ||
96 https://www.sjtxt.la/book/73017/14645753.html | ||
97 https://www.sjtxt.la/book/73017/14645754.html | ||
98 https://www.sjtxt.la/book/73017/14645755.html | ||
99 https://www.sjtxt.la/book/73017/14645756.html | ||
100 https://www.sjtxt.la/book/73017/14645757.html | ||
101 https://www.sjtxt.la/book/73017/14645758.html | ||
102 https://www.sjtxt.la/book/73017/14645759.html | ||
103 https://www.sjtxt.la/book/73017/14645760.html | ||
104 https://www.sjtxt.la/book/73017/14645761.html | ||
105 https://www.sjtxt.la/book/73017/14645762.html | ||
106 https://www.sjtxt.la/book/73017/14645763.html | ||
107 https://www.sjtxt.la/book/73017/14645764.html | ||
108 https://www.sjtxt.la/book/73017/14645765.html | ||
109 https://www.sjtxt.la/book/73017/14645766.html | ||
110 https://www.sjtxt.la/book/73017/14645767.html | ||
111 https://www.sjtxt.la/book/73017/14645768.html | ||
112 https://www.sjtxt.la/book/73017/14645769.html | ||
113 https://www.sjtxt.la/book/73017/14645770.html | ||
114 https://www.sjtxt.la/book/73017/14645771.html | ||
115 https://www.sjtxt.la/book/73017/14645772.html | ||
116 https://www.sjtxt.la/book/73017/14645773.html | ||
117 https://www.sjtxt.la/book/73017/14645774.html | ||
118 https://www.sjtxt.la/book/73017/14645775.html | ||
119 https://www.sjtxt.la/book/73017/14645776.html | ||
120 https://www.sjtxt.la/book/73017/14645777.html | ||
121 https://www.sjtxt.la/book/73017/14645778.html | ||
122 https://www.sjtxt.la/book/73017/14645779.html | ||
123 https://www.sjtxt.la/book/73017/14645780.html | ||
124 https://www.sjtxt.la/book/73017/14645781.html | ||
125 https://www.sjtxt.la/book/73017/14645782.html | ||
126 https://www.sjtxt.la/book/73017/14645783.html | ||
127 https://www.sjtxt.la/book/73017/14645784.html | ||
128 https://www.sjtxt.la/book/73017/14645785.html | ||
129 https://www.sjtxt.la/book/73017/14645786.html | ||
130 https://www.sjtxt.la/book/73017/14645787.html | ||
131 https://www.sjtxt.la/book/73017/14645788.html | ||
132 https://www.sjtxt.la/book/73017/14645789.html | ||
133 https://www.sjtxt.la/book/73017/14645790.html | ||
134 https://www.sjtxt.la/book/73017/14645791.html | ||
135 https://www.sjtxt.la/book/73017/14645792.html | ||
136 https://www.sjtxt.la/book/73017/14645793.html | ||
137 https://www.sjtxt.la/book/73017/14645794.html | ||
138 https://www.sjtxt.la/book/73017/14645795.html | ||
139 https://www.sjtxt.la/book/73017/14645796.html | ||
140 https://www.sjtxt.la/book/73017/14645797.html | ||
141 https://www.sjtxt.la/book/73017/14645798.html | ||
142 https://www.sjtxt.la/book/73017/14645799.html | ||
143 https://www.sjtxt.la/book/73017/14645800.html | ||
144 https://www.sjtxt.la/book/73017/14645801.html | ||
145 https://www.sjtxt.la/book/73017/14645802.html | ||
146 https://www.sjtxt.la/book/73017/14645803.html | ||
147 https://www.sjtxt.la/book/73017/14645804.html | ||
148 https://www.sjtxt.la/book/73017/14645805.html | ||
149 https://www.sjtxt.la/book/73017/14645806.html | ||
150 https://www.sjtxt.la/book/73017/14645807.html | ||
151 https://www.sjtxt.la/book/73017/14645808.html | ||
152 https://www.sjtxt.la/book/73017/14645809.html | ||
153 https://www.sjtxt.la/book/73017/14645810.html | ||
154 https://www.sjtxt.la/book/73017/14645811.html | ||
155 https://www.sjtxt.la/book/73017/14645812.html | ||
156 https://www.sjtxt.la/book/73017/14645813.html | ||
157 https://www.sjtxt.la/book/73017/14645814.html | ||
158 https://www.sjtxt.la/book/73017/14645815.html | ||
159 https://www.sjtxt.la/book/73017/14645816.html | ||
160 https://www.sjtxt.la/book/73017/14645817.html | ||
161 https://www.sjtxt.la/book/73017/14645818.html | ||
162 https://www.sjtxt.la/book/73017/14645819.html | ||
163 https://www.sjtxt.la/book/73017/14645820.html | ||
164 https://www.sjtxt.la/book/73017/14645821.html | ||
165 https://www.sjtxt.la/book/73017/14645822.html | ||
166 https://www.sjtxt.la/book/73017/14645823.html | ||
167 https://www.sjtxt.la/book/73017/14645824.html | ||
168 https://www.sjtxt.la/book/73017/14645825.html | ||
169 https://www.sjtxt.la/book/73017/14645826.html | ||
170 https://www.sjtxt.la/book/73017/14645827.html | ||
171 https://www.sjtxt.la/book/73017/14645828.html | ||
172 https://www.sjtxt.la/book/73017/14645829.html | ||
173 https://www.sjtxt.la/book/73017/14645830.html | ||
174 https://www.sjtxt.la/book/73017/14645831.html | ||
175 https://www.sjtxt.la/book/73017/14645832.html | ||
176 https://www.sjtxt.la/book/73017/14645833.html | ||
177 https://www.sjtxt.la/book/73017/14645834.html |
Empty file.
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,11 @@ | ||
# STATIC | ||
|
||
This directory contains your static files. | ||
Each file inside this directory is mapped to /. | ||
|
||
Example: /static/robots.txt is mapped as /robots.txt. | ||
|
||
More information about the usage of this directory in the documentation: | ||
https://nuxtjs.org/guide/assets#static | ||
|
||
**This directory is not required, you can delete it if you don't want to use it.** |
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,32 @@ | ||
/*! | ||
* Vue.js v2.5.16 | ||
* (c) 2014-2018 Evan You | ||
* Released under the MIT License. | ||
*/ | ||
|
||
/*! | ||
* Determine if an object is a Buffer | ||
* | ||
* @author Feross Aboukhadijeh <https://feross.org> | ||
* @license MIT | ||
*/ | ||
|
||
/*! | ||
* @overview es6-promise - a tiny implementation of Promises/A+. | ||
* @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald) | ||
* @license Licensed under MIT license | ||
* See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE | ||
* @version v4.2.4+314e4831 | ||
*/ | ||
|
||
/** | ||
* vue-meta v1.5.2 | ||
* (c) 2018 Declan de Wet & Atinux | ||
* @license MIT | ||
*/ | ||
|
||
/* | ||
object-assign | ||
(c) Sindre Sorhus | ||
@license MIT | ||
*/ |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.