-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo - Copy.html
91 lines (72 loc) · 3.79 KB
/
demo - Copy.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<meta charset="utf-8">
<head>
<!-- Do you need Material Icons? -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet" type="text/css">
<!-- Do you need Fontawesome? -->
<link href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" rel="stylesheet">
<!-- Do you need Ionicons? -->
<link href="https://cdn.jsdelivr.net/npm/ionicons@^4.0.0/dist/css/ionicons.min.css" rel="stylesheet">
<!-- Do you need MDI? -->
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@^2.0.0/css/materialdesignicons.min.css" rel="stylesheet">
<!-- Do you need all animations? -->
<link href="https://cdn.jsdelivr.net/npm/animate.css@^3.5.2/animate.min.css" rel="stylesheet">
<!--
Finally, add Quasar's CSS:
Replace version below (0.17.8) with your desired version of Quasar.
Replace ".mat" with ".ios" for the iOS theme.
Add ".rtl" for the RTL support (example: quasar.mat.rtl.min.css).
-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/quasar.mat.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- replaced their polifil with this one and it seems to work -->
<script src="https://unpkg.com/@webcomponents/[email protected]/webcomponents-bundle.js"></script>
<!-- Do you want IE support? Replace "0.17.8" with your desired Quasar version -->
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/quasar.ie.polyfills.umd.min.js"></script> -->
<!-- You need Vue too -->
<script src="https://cdn.jsdelivr.net/npm/vue@latest/dist/vue.min.js"></script>
<!--
Add Quasar's JS:
Replace version below (0.17.8) with your desired version of Quasar.
Replace ".mat" with ".ios" for the iOS theme.
-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/quasar.mat.umd.min.js"></script>
<!--
If you want to add a Quasar I18n language pack (other than "en-us").
Notice "pt-br" in "i18n.pt-br.umd.min.js" for Brazilian Portuguese language pack.
Replace version below (0.17.8) with your desired version of Quasar.
Also check final <script> tag below to enable the language
Language pack list: https://github.com/quasarframework/quasar/tree/dev/i18n
-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/i18n.pt-br.umd.min.js"></script>
<!--
If you want to make Quasar use a specific set of icons (unless you're using Material Icons already).
Replace version below (0.17.8) with your desired version of Quasar.
Icon sets list: https://github.com/quasarframework/quasar/tree/dev/icons
-->
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/icons.fontawesome.umd.min.js"></script> -->
<title>Test-Form demo</title>
<!-- <script src="https://unpkg.com/vue"></script> -->
<script src="./dist/Test-Form.js"></script>
<Test-Form> </Test-Form>
<script> // if using a Quasar language pack other than the default "en-us";
// requires the language pack style tag from above
Quasar.i18n.set(Quasar.i18n.ptBr) // notice camel-case "ptBr"
// if you want Quasar components to use a specific icon library
// other than the default Material Icons;
// requires the icon set style tag from above
Quasar.icons.set(Quasar.icons.fontawesome) // fontawesome is just an example
Vue.component('my-page', {
template: '#my-page'
})
// start the UI; assumes you have a <div id="q-app"></div> in your <body>
new Vue({
el: '#q-app',
data: function () {
return {}
},
methods: {},
// ...etc
})
</script>
</body>