A tag makes a call and confirms the pop-up box before dialing. What's wrong with my code?

console report: Uncaught ReferenceError: go1 is not defined

<template>
    <div class="kefu" >
        <ul class="kefu-list">
            <li>
                

<a href="tel:0512-61770082" onclick="return go1();">0512-61770082</a> </li> </ul> </div> </template> <script> export default { data(){ return{} } methods:{ go1(){ Dialog.confirm({ title: "", message: "1314520" }).then(() => { }).catch(() => { }); } } } </script>
May.02,2022

@ click= "go1" is fine

Menu