19 lines
190 B
Vue
19 lines
190 B
Vue
<template>
|
|
<view class="empty" :style="themeColor">
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.empty {
|
|
display: flex;
|
|
}
|
|
|
|
</style> |