You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
542 B
25 lines
542 B
1 year ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Basic</title>
|
||
|
<script type="text/javascript" src="../node_modules/vue/dist/vue.js"></script>
|
||
|
<!-- <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>-->
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<h1>{{ message }}</h1>
|
||
|
</div>
|
||
|
<script type="text/javascript">
|
||
|
// import Vue from 'vue'
|
||
|
|
||
|
const vm = new Vue({
|
||
|
el: '#app',
|
||
|
data: {
|
||
|
message: 'Hello Vue!!'
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|