okam-core
Version:
The extension for small program framework
32 lines (25 loc) • 411 B
JavaScript
/**
* @file The framework base
* @author sparklewhy@gmail.com
*/
;
import * as na from '../na/index';
import request from '../na/request';
export default {
/**
* The native env
*
* @type {Object}
*/
$na: na,
/**
* The native API
*/
$api: na.api,
/**
* The http request object
*
* @type {Object}
*/
$http: request
};