diff --git a/template/src/components/Hello.vue b/template/src/components/Hello.vue index 8932021..04b0670 100644 --- a/template/src/components/Hello.vue +++ b/template/src/components/Hello.vue @@ -8,6 +8,10 @@ export default { data () { return { + // note: changing this line won't causes changes + // with hot-reload because the reloaded component + // preserves its current state and we are modifying + // its initial state. msg: 'Hello World!' } }