Skip to content

Instantly share code, notes, and snippets.

@justinyoo

justinyoo/App.ts Secret

Created February 23, 2017 11:34
Embed
What would you like to do?
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