Skip to content

Commit f352cf5

Browse files
nandi95pikax
andauthored
feat(useVModel): Set to throw error if current instance is undefined (#819)
linked: #818 Co-authored-by: Carlos Rodrigues <[email protected]>
1 parent 1680fb2 commit f352cf5

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

packages/vue-composable/__tests__/misc/vmodel.spec.ts

+18-15
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe("vmodel", () => {
1313
it("should work", async () => {
1414
const comp1 = {
1515
props: {
16-
test: String
16+
test: String,
1717
},
1818
setup(props: { test: string }) {
1919
const testModel = useVModel(props, "test");
@@ -23,24 +23,24 @@ describe("vmodel", () => {
2323
});
2424

2525
return {
26-
testModel
26+
testModel,
2727
};
2828
},
29-
template: `<p>{{testModel}}</p>`
29+
template: `<p>{{testModel}}</p>`,
3030
};
3131

3232
const test = ref("propTest");
3333

3434
const vm = createVue({
3535
components: {
36-
comp1
36+
comp1,
3737
},
3838
template: `<comp1 v-model:test="test" />`,
3939
setup() {
4040
return {
41-
test
41+
test,
4242
};
43-
}
43+
},
4444
});
4545

4646
expect(test.value).toBe("propTest");
@@ -53,7 +53,7 @@ describe("vmodel", () => {
5353
it("should replace prop", async () => {
5454
const comp1 = {
5555
props: {
56-
test: String
56+
test: String,
5757
},
5858
setup(props: { test: string }) {
5959
const test = useVModel(props, "test");
@@ -63,24 +63,24 @@ describe("vmodel", () => {
6363
});
6464

6565
return {
66-
test
66+
test,
6767
};
6868
},
69-
template: `<p>{{test}}</p>`
69+
template: `<p>{{test}}</p>`,
7070
};
7171

7272
const test = ref("propTest");
7373

7474
const vm = createVue({
7575
components: {
76-
comp1
76+
comp1,
7777
},
7878
template: `<comp1 v-model:test="test" />`,
7979
setup() {
8080
return {
81-
test
81+
test,
8282
};
83-
}
83+
},
8484
});
8585

8686
expect(test.value).toBe("propTest");
@@ -90,8 +90,11 @@ describe("vmodel", () => {
9090
expect(test.value).toBe("mounted");
9191
});
9292

93-
it("should return empty ref if called outside setup", () => {
94-
const r = useVModel({ a: 10 }, "a");
95-
expect(r.value).toBeUndefined();
93+
it("should throw an error if the method not called in the setup or lifecycle hook", () => {
94+
expect(() => useVModel({ myProp: 1 }, "myProp")).toThrow(
95+
new Error(
96+
"useVModel must be called from the setup or lifecycle hook methods."
97+
)
98+
);
9699
});
97100
});

packages/vue-composable/src/misc/vmodel.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ref, Ref, computed, getCurrentInstance } from "../api";
1+
import { Ref, computed, getCurrentInstance } from "../api";
22

33
export function useVModel<TProps, PropName extends keyof TProps>(
44
props: TProps,
@@ -13,15 +13,18 @@ export function useVModel(props: Record<string, any>, name: string): Ref<any> {
1313

1414
const instance = getCurrentInstance();
1515
if (!instance) {
16-
return ref() as any;
16+
throw new Error(
17+
"useVModel must be called from the setup or lifecycle hook methods."
18+
);
1719
}
20+
1821
return computed({
1922
get() {
2023
return props[name];
2124
},
2225
set(v) {
2326
// @ts-ignore when building v2 the instance doesn't have `emit`
2427
instance.emit(`update:${name}`, v);
25-
}
28+
},
2629
});
2730
}

0 commit comments

Comments
 (0)