| 12345678910111213141516171819202122232425 |
- <template>
- <view>
- <u-image :src="src" mode="widthFix"></u-image>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- src: '',
- }
- },
- onLoad(options) {
- this.src = options.poster;
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|