Skip to content

Instantly share code, notes, and snippets.

@justinyoo

justinyoo/App.ts Secret

Created February 23, 2017 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/287d98d7b01b239bff7b2036b24ace13 to your computer and use it in GitHub Desktop.
Save justinyoo/287d98d7b01b239bff7b2036b24ace13 to your computer and use it in GitHub Desktop.
Running Vue.js with TypeScript on ASP.NET Core Application
// App.vue
export default {
name: 'app'
}
// App.ts
import * as Vue from "vue";
import Component from "vue-class-component";
@Component({
name: "App",
})
export default class App extends Vue {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment