1
0

Remove lots of inline SVGs, use moment.js for times, add some pages for future work

This commit is contained in:
Jai A
2020-10-09 14:25:02 -07:00
parent 3656e6ef54
commit f4a518ce6b
27 changed files with 2167 additions and 417 deletions
+21
View File
@@ -0,0 +1,21 @@
<template>
<div></div>
</template>
<script>
import axios from 'axios'
export default {
async asyncData(data) {
const res = await axios.get(
`https://api.modrinth.com/api/v1/mod/${data.params.id}`
)
return {
mod: res.data,
}
},
}
</script>
<style lang="scss"></style>