-
HotVue组件使用的热重载API为vue-hot-reload-api
资源介绍
vue-hot-reload-api
注意: vue-hot-reload-api@2.x仅适用于vue@2.x
Vue组件的热重装API。 这就是和在引擎盖下使用的东西。
用法
仅当您基于Vue组件编写一些构建工具链时,才使用此功能。 对于正常的应用程序使用,只需使用vue-loader或vueify 。
// define a component as an options object
const myComponentOptions = {
data ( ) { ... } ,
created ( ) { ... } ,
render ( ) { ... }
}
// assuming Webpack's HMR API.
// https://webpack.js.org/guides/hot-module-replacement/
if ( module .