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.

33 lines
421 B

<template>
<view class="content">
<navbar :title="title"></navbar>
</view>
</template>
<script>
import navbar from "@/components/navbar.vue"
export default {
components: {
navbar
},
data() {
return {
title: "title"
}
},
onLoad() {
},
methods: {
}
}
</script>
<style scoped lang="scss">
/deep/.u-navbar {
border-radius: 0 0 40rpx 40rpx / 0 0 80rpx 80rpx !important;
}
</style>