vuejs cdn

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Vue.js CDN Example</title>
</head>
<body>

  <!-- Step 1: Include Vue.js from CDN -->
  <script src="https://cdn.jsdelivr.net/npm/vue@2"></script>

  <!-- Step 2: Create a Vue instance -->
  <div id="app">
    {{ message }}
  </div>

  <!-- Step 3: Define the Vue instance -->
  <script>
    new Vue({
      el: '#app',
      data: {
        message: 'Hello, Vue!'
      }
    });
  </script>

</body>
</html>