Nativescript Vue:如何访问 v-template 中的数据属性?

Nativescript Vue: How to get access to data properties inside of v-template?

我可以访问我的数据,例如第一个 Label 元素内的 lowText。但是当我在 Pager 组件内部和 v-template 内部时,我无法访问它。我怎样才能传递它的上下文?

<StackLayout>
   <Label :text="this.lowText" />
   <Pager for="item in items">
      <v-template>
         <Label :text="this.lowText" />
      </v-template>
   </Pager>
</StackLayout>

如果 lowText 是数据属性,则不必使用 this.lowText。只需使用 lowText,它应该在内部和外部都有效 v-template.

<StackLayout>
   <Label :text="lowText" />
   <Pager for="item in items">
      <v-template>
         <Label :text="lowText" />
      </v-template>
   </Pager>
</StackLayout>