├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── README.md-old ├── dist ├── vue-friendly-iframe.js └── vue-friendly-iframe.min.js ├── docs-src ├── components │ ├── App │ │ ├── index.vue │ │ └── template.html │ ├── Events │ │ ├── index.vue │ │ └── template.html │ ├── Examples │ │ ├── index.vue │ │ └── template.html │ ├── Home │ │ ├── index.vue │ │ └── template.html │ ├── Install │ │ ├── index.vue │ │ └── template.html │ ├── Options │ │ ├── index.vue │ │ └── template.html │ └── Sidebar │ │ ├── index.vue │ │ └── template.html ├── index.js └── router.js ├── docs ├── docs.css ├── docs.js └── index.html ├── package.json └── src ├── components └── FriendlyIframe │ └── index.vue ├── index.js └── utils └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/README.md -------------------------------------------------------------------------------- /README.md-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/README.md-old -------------------------------------------------------------------------------- /dist/vue-friendly-iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/dist/vue-friendly-iframe.js -------------------------------------------------------------------------------- /dist/vue-friendly-iframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/dist/vue-friendly-iframe.min.js -------------------------------------------------------------------------------- /docs-src/components/App/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/App/index.vue -------------------------------------------------------------------------------- /docs-src/components/App/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/App/template.html -------------------------------------------------------------------------------- /docs-src/components/Events/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Events/index.vue -------------------------------------------------------------------------------- /docs-src/components/Events/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Events/template.html -------------------------------------------------------------------------------- /docs-src/components/Examples/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Examples/index.vue -------------------------------------------------------------------------------- /docs-src/components/Examples/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Examples/template.html -------------------------------------------------------------------------------- /docs-src/components/Home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Home/index.vue -------------------------------------------------------------------------------- /docs-src/components/Home/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Home/template.html -------------------------------------------------------------------------------- /docs-src/components/Install/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Install/index.vue -------------------------------------------------------------------------------- /docs-src/components/Install/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Install/template.html -------------------------------------------------------------------------------- /docs-src/components/Options/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Options/index.vue -------------------------------------------------------------------------------- /docs-src/components/Options/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Options/template.html -------------------------------------------------------------------------------- /docs-src/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Sidebar/index.vue -------------------------------------------------------------------------------- /docs-src/components/Sidebar/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/components/Sidebar/template.html -------------------------------------------------------------------------------- /docs-src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/index.js -------------------------------------------------------------------------------- /docs-src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs-src/router.js -------------------------------------------------------------------------------- /docs/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs/docs.css -------------------------------------------------------------------------------- /docs/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs/docs.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/package.json -------------------------------------------------------------------------------- /src/components/FriendlyIframe/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/src/components/FriendlyIframe/index.vue -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/vue-friendly-iframe/HEAD/src/utils/utils.js --------------------------------------------------------------------------------