UNPKG

@jianghujs/jianghu

Version:

Progressive Enterprise Framework

65 lines (57 loc) 1.49 kB
{% extends 'template/jhTemplateV4.html'%} <!-- vue template 代码块 --> {% block vueTemplate %} <script type="text/html" id="app-template"> <div> <v-app mobile-breakpoint="sm"> <jh-menu /> <v-main class="mt-15"> <!-- 头部内容 >>>>>>>>>>>>> --> <div class="jh-page-second-bar px-8"> <v-row class="align-center"> <v-col cols="12" xs="12" sm="12" md="4" xl="3"> <div class="py-4 text-body-1 font-weight-bold">帮助手册</div> </v-col> </v-row> </div> <!-- <<<<<<<<<<<<< 头部内容 --> <div class="jh-page-body-container px-8"> <v-card class="rounded-lg jh-page-doc-container"> <!-- 页面内容 >>>>>>>>>>>>> --> <iframe style="border: 0" :src="`/${appInfo.appId}/pageDoc`" width="100%" height="100%"></iframe> <!-- <<<<<<<<<<<<< 页面内容 --> </v-card> </div> </v-main> </v-app> </div> </script> <div id="app"> </div> {% endblock %} {% block vueScript %} <script type="module"> new Vue({ el: '#app', template: '#app-template', vuetify: new Vuetify(), data: () => ({ // 面包屑 breadcrumbs: [ { text: '首页', disabled: true, }, { text: 'manual', disabled: true, } ], appInfo: window.appInfo, }), created() { }, methods: {} }) </script> {% endblock %}