Last active
January 15, 2018 15:11
-
-
Save mitchell-garcia/a1d7d8fca5c98c9aeb0da7766cfceb4c to your computer and use it in GitHub Desktop.
Typing Props
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
<script lang="ts"> | |
import Vue from "vue" | |
interface TestComponentData { | |
testingProp: string | |
theme: "white" | "red" | |
} | |
export default Vue.extend({ | |
data() { | |
return { | |
testingProp: "test", | |
theme: "white" | |
} as TestComponentData | |
} | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment