Files
2026-01-26 18:04:27 +08:00

29 lines
592 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script>
import ChromeBrowser from './utils/chrome-browser.js';
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/* 全局样式 */
/* uni-input .uni-input-input {
color: #e2e8f0 !important;
} */
/* 不使用 scoped这样样式可以穿透组件 */
/* .form-group uni-input .uni-input-input {
color: #2c3e50 !important;
background: rgba(255, 255, 255, 0.9);
padding: 15px 18px;
border-radius: 12px;
} */
</style>