22 lines
279 B
Vue
22 lines
279 B
Vue
<template>
|
|
<div class="draggable-container">
|
|
<!-- draggable -->
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "DragableContainer",
|
|
props: {},
|
|
data() {
|
|
return {};
|
|
},
|
|
created() {},
|
|
mounted() {},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|