12345678910111213141516171819202122232425 |
- <template>
- <view>
- <view>商城首页</view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- onLoad() {
- console.log(111111)
- },
- computed: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .xxxxxx {
- width: 100%;
- min-height: 100vh;
- }
- </style>
|