You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
274 B
18 lines
274 B
<!--
|
|
@ 作者: 鲁智强
|
|
@ 时间: 2023-08-28 15:14:25
|
|
@ 备注:
|
|
-->
|
|
<script lang='ts' setup>
|
|
import ddComponent from "./dd.vue"
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<dd-component></dd-component>
|
|
</div>
|
|
</template>
|
|
<style lang='scss' scoped>
|
|
*{
|
|
background-color: #fff;
|
|
}
|
|
</style>
|
|
|