You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
569 B

<template>
<view class="doc mp-html">
<mp-html :content="content"></mp-html>
</view>
</template>
<script setup lang="ts">
import { onReady } from "@dcloudio/uni-app";
import { ref } from "vue";
import { useCool } from "/@/cool";
const { router, service } = useCool();
const content = ref("");
onReady(() => {
const { title, key } = router.query;
uni.setNavigationBarTitle({
title,
});
service.base.comm
.param({
key,
})
.then((res) => {
content.value = res;
});
});
</script>
<style lang="scss" scoped>
.doc {
padding: 20rpx;
}
</style>