Skip to content
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

test(runtime-vapor): component props #99

Merged
merged 23 commits into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
76de206
test(runtime-vapor): component props
Ubugeeei Jan 28, 2024
da5c838
test(runtime-vapor): component props (stateful)
Ubugeeei Jan 28, 2024
22c7964
test(runtime-vapor): component props (functional)
Ubugeeei Jan 28, 2024
14eb3c1
test(runtime-vapor): component props (boolean casting)
Ubugeeei Jan 28, 2024
0f8fb87
test(runtime-vapor): component props (default value)
Ubugeeei Jan 28, 2024
0c4a980
test(runtime-vapor): component props (props type support BigInt)
Ubugeeei Jan 28, 2024
319f985
chore: add comment
Ubugeeei Jan 28, 2024
6e35c1c
chore: rename file
Ubugeeei Jan 28, 2024
2a70530
test(runtime-vapor): component props (support null in required + mult…
Ubugeeei Jan 29, 2024
6492a56
test(runtime-vapor): component props (should not mutate original prop…
Ubugeeei Jan 29, 2024
9950467
chore: remove unused var
Ubugeeei Jan 29, 2024
8462b22
chore: comment out unimplemented test
Ubugeeei Jan 29, 2024
34a6fc4
test(runtime-vapor): fix: component props (boolean casting)
Ubugeeei Jan 30, 2024
f10e396
Merge branch 'main' of github.com:vuejs/core-vapor into ubugeeei/test…
Ubugeeei Jan 30, 2024
99ed6b3
test(runtime-vapor): fix: component props (default value)
Ubugeeei Jan 30, 2024
f06a64b
Merge branch 'main' of github.com:vuejs/core-vapor into ubugeeei/test…
Ubugeeei Jan 31, 2024
2bf2b60
fix: remove import from "vue"
Ubugeeei Jan 31, 2024
ab94425
chore: add some test cases (todo)
Ubugeeei Jan 31, 2024
7751465
test(runtime-vapor): component props (optimized props updates)
Ubugeeei Jan 31, 2024
c36257d
chore: test.todo
Ubugeeei Jan 31, 2024
f685ccb
Merge branch 'main' of github.com:vuejs/core-vapor into ubugeeei/test…
Ubugeeei Feb 3, 2024
e10a7b4
chore: fix test
Ubugeeei Feb 3, 2024
b4063ba
chore: update issue number
sxzz Feb 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/runtime-core/__tests__/componentProps.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ describe('component props', () => {
)
})

// #691ef
// #6915
test('should not mutate original props long-form definition object', () => {
const props = {
msg: {
Expand Down
Loading
Loading