13 lines
185 B
TypeScript
13 lines
185 B
TypeScript
import Button from './Button';
|
|
import Element from './Element';
|
|
import plugin from './plugin';
|
|
|
|
export default {
|
|
name: 'button',
|
|
Button,
|
|
Element,
|
|
plugins: [
|
|
plugin,
|
|
],
|
|
};
|