ngx.js 259 B

12345678910111213
  1. import http from '@/lib/http'
  2. const ngx = {
  3. build_config(ngxConfig) {
  4. return http.post('/ngx/build_config', ngxConfig)
  5. },
  6. tokenize_config(content) {
  7. return http.post('/ngx/tokenize_config', {content})
  8. }
  9. }
  10. export default ngx