vue-portal
teleports the content to another location in the dom. Similar to vue-transfer-dom and vue-move-dom, but as a component instead of a directive.
Demo
Install
npm install --save-dev vue-portal
or include build/bundle.js
.
Usage
# in your component components: "portal": require"vue-portal"# or, when using bundle.js components: "portal": windowvueCompsportal
Will be appended to body Will be appended to element with ID somewhere
For examples see dev/
.
Props
Name | type | default | description |
---|---|---|---|
target | String or Element | - | where the content will be appended. Defaults to document.body . Uses document.querySelector to convert a String to Element. |
Behavior
Works with v-if
but not v-show
on <portal>
.
Will be appended to body Will be appended to element with ID somewhere
target
prop can be dynamic.
Development
Clone repository.
npm installnpm run dev
Browse to http://localhost:8080/
.
License
Copyright (c) 2016 Paul Pflugradt Licensed under the MIT license.