Krys4lide/frontend/pages/index.vue

22 lines
300 B
Vue
Raw Normal View History

2024-09-23 20:56:07 +02:00
<template>
<div>
<h1 class="text-xl">Welcome to your {{ appName }}!</h1>
</div>
</template>
<script>
export default {
name: 'HomePage',
data() {
return {
appName: 'Nuxt App'
};
}
};
</script>
<style scoped>
h1 {
color: #42b983;
}
</style>