30 lines
516 B
Vue
30 lines
516 B
Vue
<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">
|
|
@import "@/style/tailwind.css";
|
|
@import "@/style/ui.scss";
|
|
/* 覆盖 Tailwind 的默认 block 样式 */
|
|
img, svg, video, canvas, audio, iframe, embed, object {
|
|
display: inline-block;
|
|
}
|
|
.container {
|
|
padding: 15px;
|
|
}
|
|
|
|
button {
|
|
line-height: inherit;
|
|
}
|
|
</style>
|