app.js 266 B

1234567891011121314
  1. import Vue from '../../../../dist/vue.runtime.common.js'
  2. export default context => {
  3. return new Promise(resolve => {
  4. context.msg = 'hello'
  5. resolve(
  6. new Vue({
  7. render(h) {
  8. return h('div', context.url)
  9. }
  10. })
  11. )
  12. })
  13. }