13 lines
180 B
Vue
13 lines
180 B
Vue
|
<script>
|
||
|
export default {
|
||
|
onLaunch() {},
|
||
|
onShow() {},
|
||
|
onHide() {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
/*每个页面公共css */
|
||
|
@import "./common/css/style.scss";
|
||
|
</style>
|