This commit is contained in:
xuliangzhan
2019-06-13 18:58:01 +08:00
parent 614bc02143
commit 4ef8d21849
5 changed files with 5 additions and 5 deletions

View File

@@ -1 +1 @@
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=Cache-Control content="no-cache, no-store, must-revalidate"><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><link rel=icon href=/vxe-table/favicon.ico><title>vxe-table 表格</title><link href=/vxe-table/static/css/chunk-vendors.73f3d338.css rel=preload as=style><link href=/vxe-table/static/css/index.b3635b72.css rel=preload as=style><link href=/vxe-table/static/js/chunk-vendors.9d232144.js rel=preload as=script><link href=/vxe-table/static/js/index.0fda006b.js rel=preload as=script><link href=/vxe-table/static/css/chunk-vendors.73f3d338.css rel=stylesheet><link href=/vxe-table/static/css/index.b3635b72.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.9d232144.js></script><script src=/vxe-table/static/js/index.0fda006b.js></script></body></html>
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=Cache-Control content="no-cache, no-store, must-revalidate"><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><link rel=icon href=/vxe-table/favicon.ico><title>vxe-table 表格</title><link href=/vxe-table/static/css/chunk-vendors.73f3d338.css rel=preload as=style><link href=/vxe-table/static/css/index.b3635b72.css rel=preload as=style><link href=/vxe-table/static/js/chunk-vendors.9d232144.js rel=preload as=script><link href=/vxe-table/static/js/index.6a607089.js rel=preload as=script><link href=/vxe-table/static/css/chunk-vendors.73f3d338.css rel=stylesheet><link href=/vxe-table/static/css/index.b3635b72.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.9d232144.js></script><script src=/vxe-table/static/js/index.6a607089.js></script></body></html>

File diff suppressed because one or more lines are too long

1
docs/static/js/index.6a607089.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -82,7 +82,7 @@ function mockData () {
age: XEUtils.random(18, 35),
region: index % 4 === 0 ? [19, 199, 1773] : index % 3 === 0 ? [9, 73, 719] : [1, 1, 5],
rate: XEUtils.random(0, 5),
address: `地址 地址地址 地址地址 址地址址地址 址地址 址地址 址地址 址地址 址地址 址地址址地址址地址 地址${index}`,
address: `地址 地址地址 地址地址 址地址 址地址 址地址 址地址址地址址地址 地址${index}`,
updateTime: currTime,
createTime: currTime,
attr1: '',

View File

@@ -28,7 +28,7 @@
<span v-html="row.age"></span>
</template>
</vxe-table-column>
<vxe-table-column prop="address" label="Address" show-overflow>
<vxe-table-column prop="address" label="Address">
<template v-slot="{ row }">
<span v-html="row.address"></span>
</template>
@@ -126,7 +126,7 @@ export default {
<span v-html="row.age"></span>
</template>
</vxe-table-column>
<vxe-table-column prop="address" label="Address" show-overflow>
<vxe-table-column prop="address" label="Address">
<template v-slot="{ row }">
<span v-html="row.address"></span>
</template>