v-slot.uvue 363 字节
Newer Older
H
hdx 已提交
1 2 3
<template>
  <view class="page">
    <view class="split-title">v-slot</view>
H
hdx 已提交
4
    <counter class="default" v-slot:default>loading</counter>
H
hdx 已提交
5 6 7
  </view>
</template>

H
hdx 已提交
8
<script>
H
hdx 已提交
9
  import counter from "./counter.uvue"
H
hdx 已提交
10
  export default {
H
hdx 已提交
11 12 13
    components: {
      counter
    },
H
hdx 已提交
14 15 16 17 18 19 20 21 22 23 24
    data() {
      return {
      }
    },
    methods: {
    }
  }
</script>

<style>
</style>