<button @click="packet().send()">Send</button>
<button @click="packet.send()">Send</button>
new Vue({
methods: {
packet() {
return {
send() {},
recieve() {}
}
}
}
})
[Vue warn]: Method "packet" has type "object" in the component definition. Did you reference the function correctly?