智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LightingSystemApp-serial/.svn/pristine/e1/e1a1f9602336e09ef1febb44db0...

36 lines
753 B

3 years ago
<template>
<!-- template里只能有一个根节点 -->
<div class="demo-page">
<text class="title">{{text}}</text>
</div>
</template>
<script>
export default {
private: {
text: '欢迎打开详情页'
},
/**
* 当用户点击菜单按钮时触发,调用app中定义的方法showMenu
* 注意:使用加载器测试`创建桌面快捷方式`功能时,请先在`系统设置`中打开`应用加载器`的`桌面快捷方式`权限
*/
onMenuPress() {
this.$app.$def.showMenu()
}
}
</script>
<style>
.demo-page {
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
}
.title {
font-size: 40px;
text-align: center;
}
</style>