智能照明系统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/ef/efddd1768a439c54c8e3b9831f1...

20 lines
391 B

import {
decodedQuery
} from 'uni-shared'
import {
callPageHook
} from '../util'
import createPage from './create-page'
export function createPageMixin () {
return {
created: function pageCreated () {
const options = decodedQuery(this.$route.query)
createPage(this, options)
callPageHook(this, 'onLoad', options)
callPageHook(this, 'onShow')
}
}
}