|
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
-
- <style lang="scss">
- /* uview-plus 基础样式 */
- @import 'uview-plus/index.scss';
-
- /* 全局 box-sizing */
- page, view, text, image, input, textarea, button, form, scroll-view {
- box-sizing: border-box;
- }
-
- /* 每个页面公共css */
-
- /* #ifdef H5 */
- h1, h2, h3, h4, h5, h6 {
- font-size: inherit;
- font-weight: inherit;
- }
- ol, ul, menu {
- list-style: none;
- }
- ul, ol {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .page {
- min-height: 100vh !important;
- }
- uni-page-head {
- display: none !important;
- }
- /* #endif */
- </style>
|