Files
lingji-work-fe/src/views/home/index.vue

17 lines
245 B
Vue
Raw Normal View History

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