[Vuejs]-Why is minimal ts-vue template not working?

0👍

You need to apply the @Component decorator.

import { Vue, Component } from 'vue-property-decorator'

@Component
export default class Page extends Vue {
  private keyword = ''
}

Leave a comment