| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="content">
- 首页
- </view>
- </template>
- <script>
- import md5 from "@/common/md5.js";
- export default {
- components: {
- },
- data() {
- return {
- };
- },
- onLoad() {
- },
- onShow() {
- },
- methods: {
- },
- };
- </script>
- <style lang="scss" scoped>
- .content {
-
- }
- </style>
|