| 1234567891011121314 |
- import { createVaporApp, vaporInteropPlugin } from 'vue'
- import App from './App.vue'
- import '../../../packages/vue/__tests__/e2e/style.css'
- // oxlint-disable-next-line no-restricted-globals
- const params = new URLSearchParams(window.location.search)
- const caseId = params.get('case')
- if (!caseId) {
- throw new Error(
- '[transition-group] Missing "case" query param. Example: /transition-group/?case=vapor-transition-group/enter',
- )
- }
- createVaporApp(App, { caseId }).use(vaporInteropPlugin).mount('#app')
|