fix: sidebar base64 decode (#1975)

This commit is contained in:
takumi9942 2020-06-01 23:54:02 +09:00 committed by GitHub
parent 3891816758
commit bcd32d44e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -473,10 +473,10 @@ export default {
} }
}, },
sidebarDecoded () { sidebarDecoded () {
return JSON.parse(atob(this.sidebar)) return JSON.parse(Buffer.from(this.sidebar, 'base64').toString())
}, },
tocDecoded () { tocDecoded () {
return JSON.parse(atob(this.toc)) return JSON.parse(Buffer.from(this.toc, 'base64').toString())
} }
}, },
created() { created() {