diff --git a/docs/guide/data-loading.md b/docs/guide/data-loading.md index 6c8cc353..2a356c21 100644 --- a/docs/guide/data-loading.md +++ b/docs/guide/data-loading.md @@ -13,7 +13,7 @@ A data loader file must end with either `.data.js` or `.data.ts`. The file shoul export default { load() { return { - data: 'hello' + hello: 'world' } } } @@ -35,7 +35,7 @@ Output: ```json { - "data": "hello" + "hello": "world" } ```