element-plus/packages/button/doc/index.stories.ts

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 };
};