-
Notifications
You must be signed in to change notification settings - Fork 14
/
conscience.html
25 lines (24 loc) · 999 Bytes
/
conscience.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<body>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="./Components/data-module.js"></script>
<div id="app">
<data-module></data-module>
<h1>Hello, world!</h1>
<h2>{{username}}, Again</h2>
This is Username: <input v-model="username"></input>
</div>
</body>
<script>
const app = new Vue({
data: {
username: '',
message : "Hello World!"
}
}).$mount("#app");;
</script>
</html>