<template>
<h1>{{ message }}</h1>
</template>
<script>
export default {
data() {
return{
message: 'This is some text'
}
</script>
<style></style>