client/tests/plugin_test.js

9 lines
181 B
JavaScript
Raw Normal View History

2024-06-26 12:23:15 +08:00
import client from 'apigo.cc/apigo/client'
2024-06-07 15:33:03 +08:00
let w = client.new('Hello', 400, 400, 'none', true)
w.loadFile('test.html')
w.setTitle('测试')
w.setSize(800, 600)
w.run()
return true