perf(layer): 初步集成 layer 弹层, 新增 useMove 拖拽 hooks

This commit is contained in:
就眠仪式
2021-11-01 01:02:21 +08:00
parent 5aa3544914
commit 32a2500d67
53 changed files with 925 additions and 210 deletions

View File

@@ -25,18 +25,23 @@
</button>
</template>
<script setup name="LayButton" lang="ts">
<script lang="ts">
export default {
name: 'LayButton',
}
</script>
<script setup lang="ts">
import { defineProps } from 'vue'
const props =
defineProps<{
type?: string
size?: string
fluid?: boolean
radius?: boolean
border?: string
disabled?: boolean
loading?: boolean
nativeType?: string
}>()
const props = defineProps<{
type?: string
size?: string
fluid?: boolean
radius?: boolean
border?: string
disabled?: boolean
loading?: boolean
nativeType?: string
}>()
</script>