33 lines
707 B
Vue
33 lines
707 B
Vue
<script lang="ts" setup>
|
|
import GoBack from "@/components/GoBack.vue"
|
|
</script>
|
|
|
|
<template>
|
|
<div class="about content">
|
|
<go-back />
|
|
<main>
|
|
Work in progress:
|
|
<ol>
|
|
<li>header note for quick actions ✅</li>
|
|
<li>offline notes ✅</li>
|
|
<li>full path resolver between notes ✅</li>
|
|
<li>draft & fleeting notes folders ✅</li>
|
|
<li>private & public notes tutorial ✅</li>
|
|
<li>
|
|
custom settings:
|
|
<ul>
|
|
<li>light & dark modes ✅</li>
|
|
<li>font families ✅</li>
|
|
</ul>
|
|
</li>
|
|
</ol>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.about {
|
|
padding: 1rem;
|
|
}
|
|
</style>
|