Foo.uvue 372 字节
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template>
  <view>
    <text id="attrs-class">attrs.class: {{attrs['class']}}</text>
    <text id="attrs-msg" class='uni-common-mt'>attrs.msg: {{attrs['msg']}}</text>
  </view>
</template>

<script setup>
  import { useAttrs } from 'vue'

  const attrs = useAttrs()
</script>

<style>
  .foo {
    padding: 10px;
    background-color: #09c;
  }
</style>