language-tools
language-tools copied to clipboard
Props break when i define data in defineComponent
With data() defined
Without data() defined
<script lang="ts">
import { defineComponent } from 'vue';
import { vmin } from '@/lib/css';
import ButtonWrapper from './ButtonWrapper.vue';
export default defineComponent({
name: 'Selection',
components: {
ButtonWrapper
},
data() {
return {
user: {
id: 123456,
name: 'ARDELAN 🐈🧶',
picture:
'https://www.pcgamesn.com/wp-content/sites/pcgamesn/2022/12/gta-5-dlc-los-santos-drug-wars.jpg'
}
};
},
methods: {
vmin
},
props: {
page: {
type: String,
default: 'selection',
validator: (value) => {
return typeof value === 'string';
}
}
}
});
</script>
It also shows an error when i use the component in another one
https://github.com/vuejs/core/issues/9296
This issue isn't similar. My problem is that all the props become unknown when i define them like this and use data()
props: {
prop: {
type: String,
default: 'selection',
validator: (value) => {
return typeof value === 'string';
}
}
}
but it works when i use them like this
props: {
prop: String
}
This Issue comes from the Plugin