mirror of https://github.com/sveltejs/svelte
9 lines
124 B
9 lines
124 B
7 years ago
|
<script>
|
||
|
export default {
|
||
|
events: {
|
||
|
drag: (node, callback) => {
|
||
|
// implementation goes here
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|