Skip to content

v7.2.1

Compare
Choose a tag to compare
@ktsn ktsn released this 12 Jan 07:15
· 41 commits to master since this release

Bug Fixes

  • Disabled lifecycle IntelliSense support by default to avoid possible breakage of existing components (#386) (d54490b).

    To enable IntelliSense support, please load vue-class-component/hooks wherever inside your project code:

    // main.ts
    import 'vue-class-component/hooks'
    import Vue from 'vue'
    import App from './App.vue'
    
    new Vue({
      render: h => h(App)
    }).$mount('#app')

    For details about this change, see the pull request.