9 lines
120 B
Vue
9 lines
120 B
Vue
|
<template>
|
||
|
<Rect />
|
||
|
<hr />
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import Rect from '@/views/shape/rect.vue';
|
||
|
</script>
|