You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when upgrade volar to ^0.34.9 , there is a ts warning Default export of the module has or is using private name 'Props' at the top of template
//error info -> Default export of the module has or is using private name 'Props'. ts(4082)<template>test</template><scriptlang="ts"setup>//step1: declear typeinterfaceProps{foo: string;}// setp2: definePropsdefineProps<Props>();
</script>
but if definePorps like below, the warning disappear