123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view>
- <web-view :src="vuex_webs.url"></web-view>
- </view>
- </template>
- <script>
- export default {
- onLoad() {
- uni.setNavigationBarColor({
- frontColor: this.theme.color,
- backgroundColor: this.theme.bgColor,
- animation: {
- duration: 400,
- timingFunc: 'easeIn'
- }
- })
- uni.setNavigationBarTitle({
- title: this.vuex_webs.title
- });
- },
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|