Files
archived-own-workspace/src/components/Welcome.vue
T
2022-06-05 01:02:07 +02:00

20 lines
213 B
Vue

<template>
<div class="hello">
<h1>ToDoList</h1>
</div>
</template>
<script>
export default {
name: 'Welcome',
props: {
}
}
</script>
<style scoped>
.hello {
text-align: center;
}
</style>