Skip to content

Commit

Permalink
add new file
Browse files Browse the repository at this point in the history
  • Loading branch information
vbdata committed May 1, 2020
1 parent 42f10c7 commit dde1f4b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions public/first.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- <script src="vue.js"></script> -->
<title>First vue app</title>
</head>
<body>
<div id="app">
<input type="text" v-model="name">
<p>Hello {{ name }}</p>
</div>

<script>
new Vue({
el: '#app',
data(){
return{
name: 'Viktor'
};
}
});

</script>

</body>
</html>

0 comments on commit dde1f4b

Please sign in to comment.