1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="new">
- <custom-nav :title="pageTitle"></custom-nav>
- <custom-toast ref='toast'></custom-toast>
- <view class="content">
- 123123
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- pageTitle: 'new'
- };
- }
- }
- </script>
- <style lang="scss">
- .new {
- @include page();
- .content {
- background: $custom-nav-borderbot-color;
-
- }
- }
- </style>
|