mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 18:17:31 +08:00

Issue number: resolves #30206 resolves #30178 resolves #30177 resolves #30175 resolves #30170 --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? There have been plenty of issues reported in regards to Vue components failing to propagate events. It seems like when we updated the Vue output target and started to use the provided runtime code from the output target, we have changed the way how event names are computed. Ionic has used a custom wrapper for handling events that would kebab case event names. That is no longer needed and removing it fixes observed issues. Reproduction case working: https://stackblitz.com/edit/vj18czas-wdhzxjom?file=package.json ## What is the new behavior? We have received a fix for this in https://github.com/stenciljs/output-targets/pull/617 which I hope will resolve this issue by updating the dependency. ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change: 1. Describe the impact and migration path for existing applications below. 2. Update the BREAKING.md file with the breaking change. 3. Add "BREAKING CHANGE: [...]" to the commit description when merging. See https://github.com/ionic-team/ionic-framework/blob/main/docs/CONTRIBUTING.md#footer for more information. --> ## Other information Dev build: `8.4.4-dev.11741193800.14916f6f`
21 lines
636 B
TypeScript
21 lines
636 B
TypeScript
import type { IonicConfig } from "@ionic/core/components";
|
|
import { initialize } from "@ionic/core/components";
|
|
import type { App, Plugin } from "vue";
|
|
|
|
export const IonicVue: Plugin<[IonicConfig?]> = {
|
|
async install(_: App, config: IonicConfig = {}) {
|
|
/**
|
|
* By default Ionic Framework hides elements that
|
|
* are not hydrated, but in the CE build there is no
|
|
* hydration.
|
|
* TODO FW-2797: Remove when all integrations have been
|
|
* migrated to CE build.
|
|
*/
|
|
if (typeof (document as any) !== "undefined") {
|
|
document.documentElement.classList.add("ion-ce");
|
|
}
|
|
|
|
initialize(config);
|
|
},
|
|
};
|