-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
39 lines (32 loc) · 1.4 KB
/
main.html
File metadata and controls
39 lines (32 loc) · 1.4 KB
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
36
37
38
39
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue-session@1.0.0/index.min.js"></script>
<link rel="icon" type="image/png" style="width: 32px; height: 32px;" href="img/logoUnimedP.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<title>Project Base</title>
</head>
<body>
<div id="app">
<div id="app">
<v-app>
<v-content>
<v-container>
<router-view></router-view>
</v-container>
</v-content>
</v-app>
</div>
</div>
<script src="./script/moment.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script src="./script/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.js"></script>
<script type="module" src="./script/app.js"></script>
</body>
</html>