# vue-plugin-load-script **Repository Path**: wansh54/vue-plugin-load-script ## Basic Information - **Project Name**: vue-plugin-load-script - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-31 - **Last Updated**: 2021-03-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-plugin-load-script [![license](https://img.shields.io/github/license/tserkov/vue-plugin-load-script.svg)]() A Vue 2 plugin for injecting remote scripts. See the `vue3` branch for Vue 3 support. ## Install ``` bash # npm npm install --save vue-plugin-load-script ``` ``` bash # yarn yarn add vue-plugin-load-script ``` ## Use ```javascript // In main.js import LoadScript from 'vue-plugin-load-script'; Vue.use(LoadScript); ``` ```javascript // As a global method Vue.loadScript("https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY") .then(() => { // Script is loaded, do something }) .catch(() => { // Failed to fetch script }); // As an instance method inside a component this.$loadScript("https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY") .then(() => { // Script is loaded, do something }) .catch(() => { // Failed to fetch script }); ``` :zap: __New in 1.2!__ If you'd like to remove (unload) the script at any point, then call the companion method `$unloadScript` __with the same URL__. ```javascript // As a global method Vue.unloadScript("https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY") .then(() => { // Script was unloaded successfully }) .catch(() => { // Script couldn't be found to unload; make sure it was loaded and that you passed the same URL }); // As an instance method inside a component this.$unloadScript("https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY") .then(() => { // Script was unloaded successfully }) .catch(() => { // Script couldn't be found to unload; make sure it was loaded and that you passed the same URL }); ``` In most situations, you can just call `Vue.unloadScript`/`this.$unloadScript` and ignore the returned promise.