app/components/vlog/newfl.vue
2025-06-06 10:29:23 +08:00

35 lines
516 B
Vue

<template>
<view class="nodata" :style="'width: ' + 375 + 'px; height: ' +500 + 'px;'">
<text class="warn-info">测试</text>
</view>
</template>
<script>
export default {
data() {
return {
popupsTop: "0rpx",
popupsLeft: "0rpx",
show: false,
dynPlace: "",
};
},
};
</script>
<style lang="scss" scoped>
.nodata {
align-items: center;
justify-content: center;
background-color: #000000;
}
.warn-info {
color: #ffffff;
font-size: 36rpx;
font-weight: 600;
}
</style>