<template> <view class="no-more"> <text v-if="isLoading">正在加载 ...</text> <text v-else>没有更多信息啦 ~</text> </view> </template> <script> // component/nomore/nomore.js export default { data() { return {}; }, /** * 组件的属性列表 */ props: { isLoading: { type: Boolean, default: false } }, /** * 组件的方法列表 */ methods: {} }; </script> <style> @import './nomore.css'; </style>