chore: export and install text component
This commit is contained in:
parent
f50b1afb68
commit
0ad5b7ae30
|
@ -0,0 +1,11 @@
|
|||
import type { App } from 'vue';
|
||||
import Text from './src/text.component';
|
||||
|
||||
export * from './src/text.props';
|
||||
export { Text };
|
||||
|
||||
export default {
|
||||
install(app: App): void {
|
||||
app.component(Text.name, Text);
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue