Skip to content

Instantly share code, notes, and snippets.

@tohagan
Created August 20, 2019 23:42
Show Gist options
  • Save tohagan/3886a596d15d0ee4748e084890d82c75 to your computer and use it in GitHub Desktop.
Save tohagan/3886a596d15d0ee4748e084890d82c75 to your computer and use it in GitHub Desktop.
Vue typescript - Fix type mismatch in component property of Router rules.
<template>
<q-page padding>
<p>This is an about page</p>
</q-page>
</template>
<script>
import Vue, * as VueTypes from "vue" // <<< Fix type mismatch in component property of Router rules.
@Component
export default class AboutPage extends Vue {
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment