12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import { defineComponent } from 'vue';
|
|
|
|
import './Introduction.scss';
|
|
|
|
export default defineComponent({
|
|
name: 'Introduction',
|
|
|
|
setup() {
|
|
return () => <div class="introduction">Introduction</div>;
|
|
},
|
|
});
|