-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (28 loc) · 947 Bytes
/
index.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
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>VueJs - Using Components Example 1</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
<!-- Favicons -->
<link rel="icon" href="https://vuejs.org/images/logo.png"> <!-- @source: https://vuejs.org -->
<style>.card{margin-top:25px;}.card-header{cursor:pointer;}</style>
</head>
<body>
<div id="app-12" class="container">
<!-- Display Bootstrap Cards -->
<bootstrap-card
header="Using Vue Components"
title="Implementing Bootstrap Card"
text="A card is a flexible and extensible content container">
</bootstrap-card>
<bootstrap-card
header="One more Component"
title="Bootstrap Card Again"
text="Yes, I know. This is awesome!">
</bootstrap-card>
</div>
<script src="https://unpkg.com/vue"></script>
<script src="app.js"></script>
</body>
</html>