Feature: using webview to show manual website

This commit is contained in:
萌萌哒赫萝
2023-08-28 00:47:50 -07:00
parent 636596a984
commit bc7a446808
5 changed files with 26 additions and 28 deletions

View File

@@ -0,0 +1,16 @@
<template>
<webview
src="https://piclist.cn/app.html"
disablewebsecurity
allowpopups
autosize="on"
scrollbars="none"
style="width: 100%; height: 100%;"
/>
</template>
<script lang="ts">
export default {
name: 'DocumentPage'
}
</script>