20 lines
293 B
Plaintext
20 lines
293 B
Plaintext
import { h } from 'vue';
|
|
|
|
export const cacheNameColumns = [
|
|
{
|
|
title: '缓存名称',
|
|
dataIndex: 'cacheName',
|
|
},
|
|
{
|
|
title: '备注',
|
|
dataIndex: 'message',
|
|
},
|
|
{
|
|
title: '操作',
|
|
fixed: 'right',
|
|
dataIndex: 'action',
|
|
key: 'action',
|
|
width: 100,
|
|
},
|
|
];
|