<template>
<div class="component-card-demo-wrap" style="height: 200px; position: relative">
<TsFloatBox :initialPosition="{ x: '280px', y: '350px' }">
<div class="demo-box">可拖动的盒子</div>
</TsFloatBox>
</div>
</template>
<script setup lang="ts">
import { TsFloatBox } from 'tui';
</script>
<style scoped>
.demo-box {
width: 100px;
height: 100px;
background: #f0f9eb;
display: flex;
align-items: center;
justify-content: center;
}
</style>