🚨 (app)

This commit is contained in:
Julien Calixte
2021-12-12 00:47:42 +01:00
parent a768545f9d
commit d1134c35cf
7 changed files with 23 additions and 151 deletions

38
src/views/AboutApp.vue Normal file
View File

@@ -0,0 +1,38 @@
<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>
<li>Share PDF section of a note (and its subnotes) </li>
</ol>
</main>
</div>
</template>
<script lang="ts">
import GoBack from '@/components/GoBack.vue'
import { defineComponent } from 'vue'
export default defineComponent({
components: { GoBack }
})
</script>
<style lang="scss" scoped>
.about {
padding: 1rem;
}
</style>