-
Notifications
You must be signed in to change notification settings - Fork 96
migrated cfp_flow from vue 2 to vue 3 #363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
migrated cfp_flow from vue 2 to vue 3 #363
Conversation
Reviewer's GuideThis PR migrates the cfp_flow feature from Vue2 to Vue3 by switching to reactive state management and createApp-based initialization, modernizing component definitions and templates, and updating related static assets and the vendored Vue library. Class diagram for updated Vue3 component structure in cfp_flowclassDiagram
class FieldComponent {
+template
+props
+data
+computed
+methods
}
class StepComponent {
+template
+props
+data
+computed
+methods
}
class App {
+template
+data
+computed
+methods
}
App o-- FieldComponent : uses
App o-- StepComponent : uses
StepComponent o-- FieldComponent : uses
File-Level ChangesTips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
4e43615
to
8ff3df0
Compare
Please share screenshots showing the feature functioning . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Saksham-Sirohi After the rewrite of Git history in FOSSASIA repo, your PR is now detected as 433 files difference from the target branch. Please rebase ( |
775750e
to
b7b3e70
Compare
Fixes part of #359
Summary by Sourcery
Upgrade the cfp_flow frontend implementation to use Vue 3, modernizing component structure and reactivity patterns, and adjust related template and style handling.
Enhancements:
Build: