You can replace the VueJS version in the code with any of the following VueJS CDN links:
The VueJS online editor allows your VueJS code to run online without requiring a web server. You don't need to use a local text editor to write VueJS files on your computer.
This enables you to quickly and easily view the running results of VueJS. Using the Ace editor, you can automatically detect code errors or warnings and receive clear, interactive feedback to help improve your code performance. You can write or paste VueJS code like this:
<html>
<head>
<title>VueJs Online Editor</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.0/vue.min.js">
</script>
</head>
<body>
<div id = "intro" style = "text-align:center;">
<h1>{{ message }}</h1>
</div>
<script type = "text/javascript">
var vue_det = new Vue({
el: '#intro',
data: {
message: 'My first VueJS project'
}
});
</script>
</body>
</html>