vue-hot-reload-api icon indicating copy to clipboard operation
vue-hot-reload-api copied to clipboard

🌶️ Hot reload API for Vue components

Results 31 vue-hot-reload-api issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.3 to 5.7.4. Commits 6370e90 Mark version 5.7.4 fbc15b1 More rigorously check surrogate pairs in regexp validator See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=acorn&package-manager=npm_and_yarn&previous-version=5.7.3&new-version=5.7.4)](https://help.github.com/articles/configuring-automated-security-fixes) Dependabot...

dependencies

> test.vue ```vue example ``` > main.js ```js import test from 'test.vue' Vue.component('test', test) ``` > App.vue ```vue ``` If i changing `test.vue` file - hot reload won't works. As...

``` /Users/cmseguin/dev/git/home-controller/node_modules/vue-hot-reload-api/dist/index.js:3 var map = (window.__VUE_HOT_MAP__ = Object.create(null)) ^ ReferenceError: window is not defined at Object. (/Users/cmseguin/dev/git/home-controller/node_modules/vue-hot-reload-api/dist/index.js:3:35) at Module._compile (module.js:624:30) at Object.Module._extensions..js (module.js:635:10) at Module.load (module.js:545:32) at tryModuleLoad (module.js:508:12) at...

This repo is missing tags corresponding to npmjs.com releases. Please add them. We like to take github tarballs for creating debian packages (to include tests and also sometimes to use...

### Version * vue-hot-reload-api 2.2.0 ### Reproduction link https://github.com/Awea/issue-vue-hot-reload-api-mixins ### Steps to reproduce Try comment/uncomment: ```javascript // src/mixins/my-mixin.vue#L20-22 foo(){ console.log('bar') } ``` ### What is expected ? I expect that...

when i npm update and npm run dev ![image](https://cloud.githubusercontent.com/assets/18392247/24574969/65b5c4da-16cd-11e7-9c0b-8d63b1828866.png) i have err ![image](https://cloud.githubusercontent.com/assets/18392247/24574980/8f75b1e0-16cd-11e7-8276-5b63ffec2466.png) ![image](https://cloud.githubusercontent.com/assets/18392247/24574982/9d79d37a-16cd-11e7-8b26-6f5b52bd1dc8.png) i print vue.__esMoudule and it is undefined and next vue.version is undefined. how can i do?

`HMR` will succeed with` webpack-dev-server`, but I get an error.

Hey I recently posted an [issue](https://github.com/vuejs/vue-router/issues/1206) on vue-router about not being able to properly hot reload vue components with Vanilla JS (at the time I thought it was vue-router). I...

I'm trying to get `vue-hot-reload-api` working with SystemJS instead of Webpack. Currently if I call `api.reload`, it doesn't seem to re-render the component, at least if only the render function...

Sample code: ``` export const foo = { template: "", data: () => ({ visible: false }), methods: { toggle: function() { this.visible = !this.visible; } } }; ``` ```...