Skip to content

Instantly share code, notes, and snippets.

@diverted247
Created November 22, 2015 16:24
Show Gist options
  • Save diverted247/188accc354f3a10befce to your computer and use it in GitHub Desktop.
Save diverted247/188accc354f3a10befce to your computer and use it in GitHub Desktop.
ts in .vue files
<template>
<h2>{{msg}}</h2>
</template>
<script lang="ts">
export function data() {
return {
msg: 'Hello from Component AAA!'
};
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment