2019-03-08 05:48:55 +00:00
|
|
|
<cn>
|
|
|
|
#### 全局化配置
|
|
|
|
自定义全局组件的 Empty 样式。
|
|
|
|
</cn>
|
|
|
|
|
|
|
|
<us>
|
|
|
|
#### ConfigProvider
|
|
|
|
Use ConfigProvider set global Empty style.
|
|
|
|
</us>
|
|
|
|
|
2019-10-09 10:32:23 +00:00
|
|
|
```tpl
|
2019-03-08 05:48:55 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<a-switch
|
|
|
|
unCheckedChildren="default"
|
|
|
|
checkedChildren="customize"
|
|
|
|
:checked="customize"
|
|
|
|
@change="(val) => customize = val"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<a-divider />
|
|
|
|
<a-config-provider>
|
2019-03-15 02:04:14 +00:00
|
|
|
<template v-if="customize" v-slot:renderEmpty>
|
2019-05-18 07:44:54 +00:00
|
|
|
<div style="text-align: center">
|
|
|
|
<a-icon type="smile" style="font-size: 20px" />
|
2019-03-08 05:48:55 +00:00
|
|
|
<p>Data Not Found</p>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<div class="config-provider">
|
|
|
|
<h3>Select</h3>
|
2019-05-18 07:44:54 +00:00
|
|
|
<a-select :style="style" :options="[]" />
|
2019-03-08 05:48:55 +00:00
|
|
|
|
|
|
|
<h3>TreeSelect</h3>
|
|
|
|
<a-tree-select :style="style" :treeData="[]" />
|
|
|
|
|
|
|
|
<h3>Cascader</h3>
|
|
|
|
<a-cascader :style="style" :options="[]" :showSearch="true" />
|
|
|
|
|
|
|
|
<h3>Transfer</h3>
|
2019-05-18 07:44:54 +00:00
|
|
|
<a-transfer :dataSource="[]" />
|
2019-03-08 05:48:55 +00:00
|
|
|
|
|
|
|
<h3>Table</h3>
|
2019-09-28 12:45:07 +00:00
|
|
|
<a-table style="margin-top: 8px" :columns="columns" :dataSource="[]" />
|
2019-03-08 05:48:55 +00:00
|
|
|
<h3>List</h3>
|
2019-05-18 07:44:54 +00:00
|
|
|
<a-list :dataSource="[]" />
|
2019-03-08 05:48:55 +00:00
|
|
|
</div>
|
|
|
|
</a-config-provider>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
2019-09-28 12:45:07 +00:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
customize: false,
|
|
|
|
style: { width: '200px' },
|
|
|
|
columns: [
|
|
|
|
{
|
|
|
|
title: 'Name',
|
|
|
|
dataIndex: 'name',
|
|
|
|
key: 'name',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Age',
|
|
|
|
dataIndex: 'age',
|
|
|
|
key: 'age',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
2019-03-08 05:48:55 +00:00
|
|
|
</script>
|
|
|
|
<style>
|
2019-09-28 12:45:07 +00:00
|
|
|
.code-box-demo .config-provider h3 {
|
|
|
|
font-size: inherit;
|
|
|
|
margin: 16px 0 8px 0;
|
|
|
|
}
|
2019-03-08 05:48:55 +00:00
|
|
|
</style>
|
|
|
|
```
|