| 123456789101112131415161718192021222324252627 |
- <template>
- <view class="content">
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'Hello'
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '../../common/css/common.css';
- @import './index.rpx.css';
- </style>
|