Package Exports
- vue-script-component
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-script-component) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Vue Script Component
A component to enable scripts to be loaded within the template tags of a .vue file.
Since I couldn't find a generic VueJS component to load ads, I made my own. While this component was initially built to load third-party ads, it should be able to load any javascript your pretty little hearts desire.
Table of Contents
Installation
npm install vue-script-componentUsage
Find a *.vue file that you want to load a script in, and...
<template>
<div>
<VueScriptComponent script='<script type="text/javascript"> alert("Peekaboo!"); </script>'/>
<div>
</template>
<script>
import VueScriptComponent from 'vue-script-component'
export default {
...
components: {
...
VueScriptComponent
}
...
}
</script>
Demo
You can find this approach being used in one of my websites https://imgsurv.com . It's a temporary image hosting site to help share images between people no matter the platform. The ads shown on the site are from Propeller at the time of writing.
License
This project is licensed under the MIT License - see the LICENSE.md file for details.