You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
261 B

2 weeks ago
<template>
<view class="margin-top margin-left">
<text>{{ view_text }}</text>
</view>
</template>
<script>
export default {
data() {
return {
view_text: ''
};
},
onLoad(options) {
this.view_text = options.text;
}
};
</script>
<style></style>