page2.uvue 283 字节
Newer Older
Q
qiang 已提交
1
<template>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
2
  <view style="flex: 1;">
Q
qiang 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
    <text style="text-align: center;">测试页面 2</text>
  </view>
</template>

<script>
  export default {
    data() {
      return {
        page: 2
      }
    },
    methods: {

    }
  }
</script>

<style>

DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
22
</style>