12 lines
161 B
Vue
12 lines
161 B
Vue
<template>
|
|
<div class="center">
|
|
<h1>This is an about page</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
</style>
|