WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

v7.2.1

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.