/* eslint-disable */
import { ApiEntity } from '@/views/entity/demoentity';
const base: ApiEntity = {
title: '格式化处理',
desc: '通过 formatter 格式化数字,以展示具有具体含义的数据,往往需要配合 parser 一起使用。',
code: ``,
js: `{
data() {
return {
formatterValue: 12345678,
};
},
}`,
};
export default base;