vue3-yuanma/packages/runtime-core/__tests__/helpers
Evan You c07751fd36 refactor: adjust createApp related API signatures
BREAKING CHANGE: `createApp` API has been adjusted.

  - `createApp()` now accepts the root component, and optionally a props
  object to pass to the root component.
  - `app.mount()` now accepts a single argument (the root container)
  - `app.unmount()` no longer requires arguments.

  New behavior looks like the following:

  ``` js
  const app = createApp(RootComponent)
  app.mount('#app')
  app.unmount()
  ```
2020-01-27 16:00:17 -05:00
..
createSlots.spec.ts test(runtime-core): createSlots method (#119) 2019-10-06 20:19:44 -04:00
renderList.spec.ts fix(runtime-core): renderList with default value when source is undefined (#498) 2019-11-26 21:00:32 -05:00
resolveAssets.spec.ts refactor: adjust createApp related API signatures 2020-01-27 16:00:17 -05:00
scopeId.spec.ts test: test scopeId support 2019-12-17 12:31:38 -05:00
toHandlers.spec.ts refactor: move mockWarn utility to @vue/shared 2020-01-22 09:29:45 -05:00