props.uvue 941 字节
Newer Older
crlfe's avatar
crlfe 已提交
1 2
<template>
  <view class="page">
3 4 5 6 7 8 9
    <check-type str="abcd" :num="12345" :bool="true" :obj="obj" :arrayString="arrayString"></check-type>
    <!--    <view>简易类型</view>-->
    <!--    <simple-->
    <!--        str="abcd"-->
    <!--        :num="12345"-->
    <!--        :bool="true"-->
    <!--    ></simple>-->
crlfe's avatar
crlfe 已提交
10 11 12
  </view>
</template>

H
hdx 已提交
13
<script>
14 15
  import checkType, { CusomObject } from "./check-type.uvue";
  // import simple from "./simple.uvue";
crlfe's avatar
crlfe 已提交
16

17 18 19 20 21 22 23 24 25 26 27
  export default {
    components: {
      checkType,
      // simple
    },
    data() {
      return {
        obj: { count: 1 } as CusomObject,
        arrayString: ["str1"] as string[]
      }
    },
crlfe's avatar
crlfe 已提交
28 29 30 31 32 33 34 35 36 37
  }
</script>

<style>
  .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
  }
38

crlfe's avatar
crlfe 已提交
39 40 41 42 43
  .buttons {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
  }
44

crlfe's avatar
crlfe 已提交
45 46 47 48
  .btn {
    flex: 1;
    margin: 0 5px;
  }
49
</style>