1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="content">
-
- <battery :battery='battery'></battery>
-
- </view>
- </template>
- <script>
- import battery from '../../../../components/battery/battery.vue'
- export default {
- components: { battery },
- data() {
- return {
- battery:101
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- .content{
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: 20rpx;
- }
- </style>
|