Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

vuejs cdn

//for development 
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
//for production  
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14"></script>

//vue 3 https://vuejs.org/guide/quick-start.html#without-build-tools
<script src="https://unpkg.com/vue@3"></script>
Comment

Vue.js CDN

<script src="https://unpkg.com/vue@3"></script>
Comment

vue cdn

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.js"></script>
Comment

cdn vue js 3

// If you are using this CDN version, it will be updated automatically

<!-- CDN VueJS 3 -->
<script src="https://unpkg.com/vue@next"></script>

// You are running a development build of Vue.
// Make sure to use the production build (*.prod.js) when deploying for production.
// this message will appear only in your browser console on development mode
Comment

vue cdn

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.min.js"></script>
<script src="https://unpkg.com/vue@2.6.14/dist/vue.min.js"></script>
Comment

vue 3 cdn example

<!DOCTYPE html>
<html lang="en">
  <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>
    <script src="https://unpkg.com/vue@next"></script>
  </head>
  <body>
    <div id="app">
      <h1>Vue3</h1>
      <h2>{{name}}</h2>
    </div>
    <script>
      const { ref, createApp } = Vue;
      createApp({
        setup() {
          const name = ref("Sophea");

          return {
            name,
          };
        },
      }).mount("#app");
    </script>
  </body>
</html>
Comment

vue js cdn

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
Comment

vue js cdn

<script src="https://unpkg.com/vue@3">
Comment

PREVIOUS NEXT
Code Example
Javascript :: check if a date time string is a valid date in js 
Javascript :: get every member of a server discord js 
Javascript :: how to get value of button that click on it jquery 
Javascript :: import uuid in react 
Javascript :: get text of selected option jquery 
Javascript :: auto scroll to bottom of page js 
Javascript :: pass url params to child router express 
Javascript :: how to adjust the caledar height fullcalendar 
Javascript :: Setting a background Image With React Inline Styles 
Javascript :: c# json get value by key 
Javascript :: import react icons module 
Javascript :: how to sort string aray in ts 
Javascript :: javascript remove all whitespaces 
Javascript :: socket io with cors 
Javascript :: how #region javascript 
Javascript :: javascript regex only letters and spaces 
Javascript :: best way to detect mobile device jquery 
Javascript :: react native flatlist horizontal scroll 
Javascript :: get window size javascript 
Javascript :: detecting screen width in jquery 
Javascript :: convert english number to bangla in javascript 
Javascript :: js key is pressed 
Javascript :: node format variable in string 
Javascript :: jquey check css style 
Javascript :: add condition inside a className in reactjs 
Javascript :: js random id 
Javascript :: node sleep 
Javascript :: electron remove cors 
Javascript :: Codewars Beginner Series #3 Sum of Numbers 
Javascript :: for loop in ejs 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =