Skip to content

Commit 07ea402

Browse files
committed
Create test-v3.php
1 parent 797f022 commit 07ea402

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

tests/render-test/test-v3.php

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)