update
This commit is contained in:
@@ -8,10 +8,6 @@
|
||||
|
||||
A very powerful Vue table component.
|
||||
|
||||
## Docs
|
||||
|
||||
[查看文档](https://xuliangzhan.github.io/vxe-table/)
|
||||
|
||||
## Features
|
||||
|
||||
* [基础](https://jsrun.net/VrXKp)
|
||||
@@ -52,6 +48,10 @@ A very powerful Vue table component.
|
||||
* 可编辑 - 键盘导航
|
||||
* 可编辑 - Excel
|
||||
|
||||
## Docs
|
||||
|
||||
[查看文档](https://xuliangzhan.github.io/vxe-table/)
|
||||
|
||||
## Installing
|
||||
|
||||
```shell
|
||||
|
||||
@@ -1 +1 @@
|
||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/vxe-table/favicon.ico><title>vxe-table</title><link href=/vxe-table/static/css/chunk-vendors.a8b08852.css rel=preload as=style><link href=/vxe-table/static/css/index.e1fd19a5.css rel=preload as=style><link href=/vxe-table/static/js/chunk-vendors.b129bc55.js rel=preload as=script><link href=/vxe-table/static/js/index.6ff6e75c.js rel=preload as=script><link href=/vxe-table/static/css/chunk-vendors.a8b08852.css rel=stylesheet><link href=/vxe-table/static/css/index.e1fd19a5.css rel=stylesheet></head><body><noscript><strong>We're sorry but vxe-table doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/vxe-table/static/js/chunk-vendors.b129bc55.js></script><script src=/vxe-table/static/js/index.6ff6e75c.js></script></body></html>
|
||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/vxe-table/favicon.ico><title>vxe-table</title><link href=/vxe-table/static/css/chunk-vendors.4176f472.css rel=preload as=style><link href=/vxe-table/static/css/index.e1fd19a5.css rel=preload as=style><link href=/vxe-table/static/js/chunk-vendors.0a8012e8.js rel=preload as=script><link href=/vxe-table/static/js/index.85ef14e1.js rel=preload as=script><link href=/vxe-table/static/css/chunk-vendors.4176f472.css rel=stylesheet><link href=/vxe-table/static/css/index.e1fd19a5.css rel=stylesheet></head><body><noscript><strong>We're sorry but vxe-table doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/vxe-table/static/js/chunk-vendors.0a8012e8.js></script><script src=/vxe-table/static/js/index.85ef14e1.js></script></body></html>
|
||||
1
docs/static/css/chunk-vendors.4176f472.css
vendored
Normal file
1
docs/static/css/chunk-vendors.4176f472.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
docs/static/css/chunk-vendors.a8b08852.css
vendored
1
docs/static/css/chunk-vendors.a8b08852.css
vendored
File diff suppressed because one or more lines are too long
34
docs/static/js/chunk-vendors.0a8012e8.js
vendored
Normal file
34
docs/static/js/chunk-vendors.0a8012e8.js
vendored
Normal file
File diff suppressed because one or more lines are too long
34
docs/static/js/chunk-vendors.b129bc55.js
vendored
34
docs/static/js/chunk-vendors.b129bc55.js
vendored
File diff suppressed because one or more lines are too long
1
docs/static/js/index.6ff6e75c.js
vendored
1
docs/static/js/index.6ff6e75c.js
vendored
File diff suppressed because one or more lines are too long
1
docs/static/js/index.85ef14e1.js
vendored
Normal file
1
docs/static/js/index.85ef14e1.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -2,6 +2,7 @@ import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
|
||||
import './plugins/highlight.js'
|
||||
import './plugins/element.js'
|
||||
import './plugins/index.js'
|
||||
import './mock'
|
||||
|
||||
1
examples/plugins/highlight.js
Normal file
1
examples/plugins/highlight.js
Normal file
@@ -0,0 +1 @@
|
||||
import 'highlight.js/styles/github.css'
|
||||
@@ -20,3 +20,15 @@
|
||||
</pre>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import hljs from 'highlight.js'
|
||||
|
||||
export default {
|
||||
mounted () {
|
||||
this.$el.querySelectorAll('pre').forEach((block) => {
|
||||
hljs.highlightBlock(block)
|
||||
})
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -70,3 +70,15 @@
|
||||
</pre>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import hljs from 'highlight.js'
|
||||
|
||||
export default {
|
||||
mounted () {
|
||||
this.$el.querySelectorAll('pre').forEach((block) => {
|
||||
hljs.highlightBlock(block)
|
||||
})
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
37
package-lock.json
generated
37
package-lock.json
generated
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vxe-table",
|
||||
"version": "0.0.4",
|
||||
"version": "0.0.5",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
@@ -4099,6 +4099,12 @@
|
||||
"integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=",
|
||||
"dev": true
|
||||
},
|
||||
"detect-indent": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz",
|
||||
"integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=",
|
||||
"dev": true
|
||||
},
|
||||
"detect-node": {
|
||||
"version": "2.0.4",
|
||||
"resolved": "http://registry.npm.taobao.org/detect-node/download/detect-node-2.0.4.tgz",
|
||||
@@ -13433,6 +13439,35 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"vue-highlight.js": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/vue-highlight.js/-/vue-highlight.js-3.1.0.tgz",
|
||||
"integrity": "sha512-i55SERtdV0CYQppGo29iT6NOq+oOenOKVwkLWZRt7bSynbsQoj/e8GJy/5xL1s5OOYObC/CxA39bRadVyPQt1A==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"detect-indent": "^5.0.0",
|
||||
"redent": "^2.0.0",
|
||||
"tslib": "^1.9.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"indent-string": {
|
||||
"version": "3.2.0",
|
||||
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz",
|
||||
"integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=",
|
||||
"dev": true
|
||||
},
|
||||
"redent": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz",
|
||||
"integrity": "sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"indent-string": "^3.0.0",
|
||||
"strip-indent": "^2.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"vue-hot-reload-api": {
|
||||
"version": "2.3.3",
|
||||
"resolved": "http://registry.npm.taobao.org/vue-hot-reload-api/download/vue-hot-reload-api-2.3.3.tgz",
|
||||
|
||||
Reference in New Issue
Block a user