mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
import ElButton from '../index';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
};
|
|
|
|
export const NormalButton = () => {
|
|
return { template: '<el-button>With Text</el-button>', installer: ElButton };
|
|
};
|
|
export const ButtonTwo = () => {
|
|
return { template: '<el-button>button two</el-button>', installer: ElButton };
|
|
};
|