knowyt/client/pages/index.vue

20 lines
252 B
Vue
Raw Normal View History

2021-07-30 14:54:40 +00:00
<template>
<div class="page-index">
2021-07-30 15:03:31 +00:00
<h1 class="page-index__title">
Know Your Teammates!
</h1>
2021-07-30 14:54:40 +00:00
</div>
</template>
<script>
export default {}
</script>
<style lang="scss">
.page-index {
&__title {
2021-07-30 15:03:31 +00:00
color: #e0e080;
2021-07-30 14:54:40 +00:00
}
}
</style>