ajout page de test, avec un hello word
This commit is contained in:
parent
9a07875dbc
commit
913350de18
1 changed files with 23 additions and 0 deletions
23
content/vue3.html
Normal file
23
content/vue3.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<div class="inner">
|
||||
|
||||
<div id="hello-vue" class="demo">
|
||||
{{ message }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<script src="https://unpkg.com/vue@next"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
const HelloVueApp = {
|
||||
data() {
|
||||
return {
|
||||
message: 'Hello Vue!!'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Vue.createApp(HelloVueApp).mount('#hello-vue')
|
||||
|
||||
</script>
|
Loading…
Add table
Reference in a new issue