21 lines
206 B
Vue
21 lines
206 B
Vue
<template>
|
|
<view>
|
|
<view class="status_bar"></view>
|
|
<view class="top_view"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|