<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <div id="app">
      <a href="https://google.com' target="_blank">https://google.com" @clicknotify">google.com</a>
    </div>

    <script type="module">
      import { createApp } from "https://unpkg.com/vue@3/dist/vue.esm-browser.js";

      createApp({
        methods: {
          notify() {
            alert("google.com");
          },
        },
      }).mount("#app");
    </script>
  </body>
</html>


<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <div id="app">
      <a href="https://google.com' target="_blank">https://google.com" onclick="notify()">google.com</a>
    </div>

    <script>
      function notify() {
        alert("google.com");
      }
    </script>
  </body>
</html>

으로 바꾸고 싶음.