1234567891011121314151617181920212223242526 |
- <template>
- <view>
- <button type="primary" @click="goControl">设备控制</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- goControl(){
- uni.navigateTo({
- url:'../demo/mqtt/mqttDemo'
- })
- }
- }
- }
- </script>
- <style>
- </style>
|