Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
chore(exports): do not re-export vue runtime-core stuff, devs should …
Browse files Browse the repository at this point in the history
…use the vue exports
  • Loading branch information
basvanmeurs committed May 12, 2020
1 parent c12d4da commit faa068f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/runtime/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ export function createRendererForStage(stage: VugelStage): VugelRender {
return render as VugelRender;
}

export * from "@vue/runtime-core";
export * from "./nodes";
2 changes: 1 addition & 1 deletion src/runtime/nodes/Base.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Element } from "tree2d";
import { queuePostFlushCb } from "../..";
import { queuePostFlushCb } from "vue";

export class Base {
public element?: Element = undefined;
Expand Down

0 comments on commit faa068f

Please sign in to comment.