1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 00:26:27 +02:00
This commit is contained in:
syuilo
2020-12-27 21:49:39 +09:00
parent 698fbdf88b
commit 0e7778bebf
15 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ export default defineComponent({
methods: {
fetchDoc() {
fetch(`${url}/assets/docs/${this.doc}.${lang}.md`).then(res => res.text()).then(md => {
fetch(`${url}/assets/docs/${lang}/${this.doc}.md`).then(res => res.text()).then(md => {
this.parse(md);
});
},