So in Vuejs, what is the difference between the two below?
Thank you for any input!
<template>
</template>
<script>
export default {
data() {
return {
.........
}
},
</script>
<script>
let data = {
.....
}
export default {
data() {
return data
},
</script>