Files
app-govern/pages/device/new.vue

25 lines
392 B
Vue
Raw Normal View History

2023-02-01 16:59:32 +08:00
<template>
<Cn-page :loading='loading'>
<view slot='body'>
<view class='index'>
添加新设备
</view>
</view>
</Cn-page>
</template>
<script>
export default {
data () {
return {
loading: false
}
},
methods: {
}
}
</script>
<style lang='scss'>
.index {
padding: 34rpx;
}
</style>