frontend-web/testcomponent.vue
2022-01-05 15:34:16 +01:00

31 lines
568 B
Vue

<template>
<div>
<h1>{{ title }}</h1>
</div>
</template>
<script>
// @group Sample Components
// just some sample code...
export default {
data() {
return {
// the title of the pages
title: "Hello"
}
},
methods: {
// @vuese
// clears something
clear() {
return true
}
}
}
</script>
<style lang="scss" scoped>
h1 {
color: red;
}
</style>