We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 797f022 commit 07ea402Copy full SHA for 07ea402
1 file changed
tests/render-test/test-v3.php
@@ -0,0 +1,41 @@
1
+<?php
2
+
3
+use Themes\VuetifyCore\VueHeadSectionV3;
4
5
+require_once '../../vendor/autoload.php';
6
7
+$head = new VueHeadSectionV3();
8
9
+echo '<html>'.$head.'<body><div id="app">
10
+<v-card>
11
+<v-card-title>Hi, Vuetify V'.VUETIFY_VERSION.'</v-card-title>
12
+</v-card>
13
+</div>
14
+<script>
15
+const { createApp } = Vue;
16
+const { createVuetify } = Vuetify;
17
18
19
+const vuetify = createVuetify({
20
21
+});
22
+const vue = createApp({
23
+ mixins: [],
24
+ data() {
25
+ return {
26
27
+ };
28
+ },
29
+ methods:{
30
31
32
+ computed:{
33
34
35
+ mounted:function() {
36
37
+ }
38
39
+var app = vue.use(vuetify).mount(\'#app\');
40
+</script>
41
+</body></html>';
0 commit comments