Add navrow + markdown parsing

This commit is contained in:
Jai A
2023-03-28 10:34:48 -07:00
parent de844e9b23
commit 8167f6f232
15 changed files with 280 additions and 40 deletions

View File

@@ -7,7 +7,7 @@
</template>
<script>
import { fileIsValid } from '@/components/utils'
import { fileIsValid } from '@/helpers/utils.js'
import { defineComponent } from 'vue'
export default defineComponent({
props: {

View File

@@ -56,7 +56,7 @@
</template>
<script setup>
import { Modal, Chips, XIcon, CheckIcon, DropdownSelect } from '@/components'
import { renderString } from '@/components/parse.js'
import { renderString } from '@/helpers/parse.js'
import { ref } from 'vue'
const modal = ref('modal')

View File

@@ -76,7 +76,7 @@ import {
Categories,
EnvironmentIndicator,
} from '@/components'
import { formatNumber } from '@/components/utils'
import { formatNumber } from '@/helpers/utils.js'
import dayjs from 'dayjs'
import relativeTime from 'dayjs/plugin/relativeTime'
dayjs.extend(relativeTime)