17 lines
No EOL
224 B
Vue
17 lines
No EOL
224 B
Vue
<template>
|
|
<p>Welcome Page Placeholder</p>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'welcome-page'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
p {
|
|
font-weight: bold;
|
|
color: purple;
|
|
}
|
|
|
|
</style> |