vue3-yuanma/packages/shared
Evan You eee5095692 refactor: rename <portal> to <teleport>
BREAKING CHANGE: `<portal>` has been renamed to `<teleport>`.

    `target` prop is also renmaed to `to`, so the new usage will be:

    ```html
    <Teleport to="#modal-layer" :disabled="isMobile">
      <div class="modal">
        hello
      </div>
    </Teleport>
    ```

    The primary reason for the renaming is to avoid potential naming
    conflict with [native portals](https://wicg.github.io/portals/).
2020-04-01 21:55:19 -04:00
..
__tests__ refactor(ssr): move escapeHtml to shared 2020-02-02 22:08:20 -05:00
src refactor: rename <portal> to <teleport> 2020-04-01 21:55:19 -04:00
api-extractor.json build: make @vue/shared public 2020-02-29 22:04:42 -05:00
index.js build: make @vue/shared public 2020-02-29 22:04:42 -05:00
package.json release: v3.0.0-alpha.10 2020-03-24 18:33:40 -04:00
README.md chore: update @vue/shared readme [ci skip] 2020-02-29 22:05:41 -05:00

@vue/shared

Internal utility functions and constants shared across @vue packages.