Dynamic component for rapid creation of interfaces
npm install vue-frame



> A simple component Vue 2.x for prototyping interfaces with iframes.
Using npm:
``bash`
npm install --save vue-frame
Using yarn:
`bash`
yarn add vue-frame
Import
`js`
import VueFrame from 'vue-frame'
export default {
components: { VueFrame },
data () {
return { /.../ }
},
methods: { /.../ }
}
This is a project for vue.
` html
`
The rendered elements look like this:

| Prop | Desc | Type | Default | Is Required |
| ----- | ------------- | ----- | ------- | ------ |
| class | Custom class to add to the component | string | | |url
| | Custom url that the component will load | string | | ✅ |text
| | Custom text | string | | ✅ |frame
| | Iframe element ID | string | | ✅ |type
| | Name of the HTML tag to render | string | a | |default
| | load site instantly mount the element | boolean | false | |
#### Example
`html`
#### Use CDN
`html``
See example with _cdn_ index.html
|Command|Description|
|---|---|
|npm run build|Build|
|npm run dev|Open browser dev|
MIT @juliandavidmr