🚨 (app)
This commit is contained in:
38
src/views/AboutApp.vue
Normal file
38
src/views/AboutApp.vue
Normal 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>
|
||||
Reference in New Issue
Block a user