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
If the next node has any errors, suppress them from being reporting, otherwise report an error. For example:
<template>
<!-- @vue-expect-error suppress errors of next node as expected -->
<Comp :string="1" />
<!-- @vue-expect-error trigger a typescript diagnostic because there is no error at the next node -->
<Comp string="1" />
</template>
@vue-skip
Skip the codegen for the next node. This will cause all typescript features on the node invalid. For example: