123456789101112131415161718192021222324 |
- <template>
- <view class="page">
- <button type="primary">登录</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- created() {
- },
- methods: {
- }
- }
- </script>
- <style>
- .page {
- padding: 15px;
- }
- </style>
|