FranckFreiburger / http-vue-loader

load .vue files from your html/js
MIT License
1.48k stars 273 forks source link

@emit does not work? #95

Closed li-coding closed 4 years ago

li-coding commented 4 years ago

Parent component:

<hello-world @test="test"></hello-world> methods: { test(val) { console.log(val) } }

Children component:

methods: { click() { this.$emit('test', 'hello') } }

the parent component test function does not work

li-coding commented 4 years ago

sorry, it's working, my mistake