17 lines
229 B
Vue
17 lines
229 B
Vue
<template>
|
|
<div>init</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
// todo
|
|
return {};
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped></style>
|