12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="container">
- {{options}}
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- options:undefined
- }
- },
- onLoad(options) {
- let text=undefined
- if(options) text=JSON.stringify(options)
- this.options=text
- },
- methods: {
- }
- }
- </script>
- <style>
- .container {
- padding: 20px;
- font-size: 14px;
- line-height: 24px;
- }
- </style>
|