
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@passerelle/insider-vue
Advanced tools
@passerelle/insider-vue
is a Vue.js plugin that enables seamless integration of the passerelle
library within Vue.js applications.
This plugin simplifies the integration of the passerelle
Insider concept, allowing you to efficiently communicate with the passerelle
Enclosure.
The Insider is a core concept in the passerelle
library, serving as the child-side plugin responsible for communication with the parent-side Enclosure component.
It facilitates the exchange of information between the parent and child components, including SPA transition data and other essential details.
@passerelle/insider-vue
allows you to harness the power of the passerelle
Insider within your Vue and Nuxt applications with minimal effort. Here's how you can get started:
@passerelle/insider-vue
in your project using npm or yarnnpm install @passerelle/insider-vue
e.g. If you are using Vue 3:
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import { insider } from '@passerelle/insider-vue'
const app = createApp(App)
app.use(router)
app.use(insider, { router, key: 'passerelle-example', origin: '*' })
app.mount('#app')
e.g. If you are using Vue 2:
import Vue from 'vue'
import VueRouter from 'vue-router'
import App from './App.vue'
import router from './router'
import { insider } from '@passerelle/insider-vue'
Vue.use(VueRouter)
Vue.use(insider, { router, key: 'passerelle-example', origin: '*' })
new Vue({
el: '#app',
router,
render: h => h(App)
})
insider
component in your Vue applicatione.g. If you are using the composition API:
<script setup>
import { useCommunicator } from '@passerelle/insider-vue'
const { hooks } = useCommunicator()
hooks.on('navigate', (path) => {
console.log('navigate', path)
})
</script>
useCommunicator
Get passerelle communicator.
sendData
Send data to enclosure.
Note: It is recommended not to send domain data.
key
: The key of the data to be sent.data
: The data to be sent.import { sendData } from '@passerelle/insider-vue'
sendData('login-user', loginUser)
onReceivedData
Receive data from enclosure.
key
: The key of the data to be received.callback
: The callback function to receive data from the enclosure.import { onReceivedData } from '@passerelle/insider-vue'
onReceivedData('login-user', (data) => {
console.log('login-user', data)
})
useFrameLayout
Get the frame layout.
The value also changes when the layout changes on the enclosure side.
When using an iframe, absolute position elements such as modals do not appear in the center when viewed from outside the iframe, so this composable is used to obtain information to address this issue.
enclosure
window
.. The window size of the enclosure.insider
window
.. The window size of the insider.offset
.. The offset of the insider.import { useFrameLayout } from '@passerelle/insider-vue'
const layout = useFrameLayout()
$passerelle
$passerelle
is added to the Vue context, and you can access the Communicator from here.
<script>
import { defineComponent } from 'vue'
export default defineComponent({
computed: {
top(): number {
this.$passerelle.layout.insider.offset.top
}
}
})
</script>
FAQs
passerelle insider module for vue2 or vue3
We found that @passerelle/insider-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.