Skip to content
On this page

可拖拽容器

Example

拖动miumiu

example
x
miumiu

Code

vue
<template>
  <div
    :style="{
      width: '100%',
      height: '300px',
      position: 'relative'
    }"
  >
    <FlowNotice>
      <span> miumiu </span>
    </FlowNotice>
  </div>
</template>

<script lang="ts" setup>
import FlowNotice from './index.vue'
</script>

<style lang="less" scoped></style>

API

props的各个属性:

Props类型默认值描述
boxWidthNumber240盒子元素的宽度。
boxHeightNumber160盒子元素的高度。
boxLeftNumber1盒子元素相对于容器左侧的位置。
boxTopNumber1盒子元素相对于容器顶部的位置。
maxWidthNumber600容器允许的最大宽度。
maxHeightNumber300容器允许的最大高度。

Released under the MIT License.