Created
August 20, 2019 23:42
-
-
Save tohagan/3886a596d15d0ee4748e084890d82c75 to your computer and use it in GitHub Desktop.
Vue typescript - Fix type mismatch in component property of Router rules.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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