1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| <template>
| <view class="box">
| <u-parse :content="content"></u-parse>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
| content: ''
| };
| },
| onLoad() {
| const value = uni.getStorageSync('fuwenben');
| if (value) {
| this.content = value
| uni.removeStorageSync('fuwenben');
| }
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .box {
| width: 100%;
| padding: 30rpx;
| box-sizing: border-box;
| }
| </style>
|
|