some test code and playing around

This commit is contained in:
vabene1111
2021-01-11 15:04:35 +01:00
parent 5bb20bd479
commit cb913f6cea
13 changed files with 64 additions and 3712 deletions

View File

@ -1,15 +1,25 @@
<template>
<div class="hello">
<h1>{{ msg }}</h1>
{{ text }}
</div>
</template>
<script>
import {myCustomTestFunction} from "@/utils";
export default {
name: 'HelloWorld',
data() {
return {
text: ''
}
},
props: {
msg: String
},
mounted() {
this.text = myCustomTestFunction("Neuer Text")
}
}
</script>

View File

@ -0,0 +1,14 @@
<template>
<div class="hello">
<h1>{{ msg }}</h1>
</div>
</template>
<script>
export default {
name: 'TestComponent',
props: {
msg: String
}
}
</script>