From 22f158e83a87a8a7a73ba3531eb666927d603299 Mon Sep 17 00:00:00 2001 From: Alexander Hartmaier Date: Fri, 12 Feb 2021 23:39:33 +0100 Subject: [PATCH] fix import in @HasManyBy example --- docs/guide/model/decorators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/model/decorators.md b/docs/guide/model/decorators.md index cba4f0d..c4c27bb 100644 --- a/docs/guide/model/decorators.md +++ b/docs/guide/model/decorators.md @@ -198,7 +198,7 @@ Marks a property on the model as a [hasManyBy attribute](../relationships/one-to ```ts import { Model, HasManyBy } from '@vuex-orm/core' -import Post from '@/models/Post' +import Node from '@/models/Node' class Cluster extends Model { static entity = 'clusters'