21 lines
236 B
Vue
21 lines
236 B
Vue
<template>
|
|
<div class="root">
|
|
hello world
|
|
</div>
|
|
<popup />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Popup } from "common4web";
|
|
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.root {
|
|
width: 80%;
|
|
|
|
.sp {
|
|
height: 520px;
|
|
}
|
|
}
|
|
</style>
|