17 lines
245 B
Vue
17 lines
245 B
Vue
|
|
<script lang="jsx">
|
||
|
|
|
||
|
|
export default {
|
||
|
|
setup(props, { emit, expose }) {
|
||
|
|
|
||
|
|
return () => (
|
||
|
|
<div>
|
||
|
|
home
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@import './style.scss';
|
||
|
|
</style>
|