app.js 244 B

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