mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
35 lines
518 B
Vue
35 lines
518 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'WatchScopedSlotsCallback',
|
|
props: {
|
|
scopedData: { type: Object, required: true },
|
|
changeCallback: { type: Function, required: true },
|
|
},
|
|
data() {
|
|
// Wolle
|
|
return {}
|
|
},
|
|
computed: {
|
|
// Wolle
|
|
},
|
|
watch: {
|
|
scopedData: {
|
|
handler(value) {
|
|
this.changeCallback(value)
|
|
},
|
|
deep: true,
|
|
immediate: true,
|
|
},
|
|
},
|
|
methods: {
|
|
// Wolle
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss"></style>
|