<template>
<div class="container" id="app">
<button @click="console.log('hello')">
Hello
</button>
</div>
</template>
<script>
export default {
name:"test",
}
</script>
<style scoped>
</style>
Looking for help with this vuejs component code. I'm trying to get "hello" to be logged in the console every time I click on the button, but it's not working as expected. I've simplified the code to just include the button to troubleshoot, but still can't figure out what's causing the issue. No errors or warnings are showing up and I'm at a loss. Any advice would be greatly appreciated.