[Vuejs]-Unexpected Token : (colon) in Vue Typescript file

2👍

Make sure that you specified TypeScript in the script tag

<script lang="ts">
    ...
</script>

0👍

default is a preserved keyword in vue, try with something else., even in js it should be used inside switch case to return something or for exporting data

👤samayo

0👍

Wrap default in quotes:

@Prop({ 'default': 'default ToDo' })

Leave a comment