From a11e0c0c4b4298c4440c237ce173bd3183032ab6 Mon Sep 17 00:00:00 2001 From: Fabian Rodriguez Date: Mon, 16 Dec 2024 12:42:12 +0100 Subject: [PATCH] Remove vue-bind-once See https://github.com/Kong/kongponents/pull/2535 --- app/_assets/entrypoints/api_spec.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/_assets/entrypoints/api_spec.js b/app/_assets/entrypoints/api_spec.js index 05cb71a91..8030b3531 100644 --- a/app/_assets/entrypoints/api_spec.js +++ b/app/_assets/entrypoints/api_spec.js @@ -1,10 +1,8 @@ import { createApp } from "vue"; import APISpec from "~/javascripts/apps/APISpec.vue"; -import { BindOncePlugin } from "vue-bind-once"; import "@kong/spec-renderer-dev/dist/style.css"; if (document.getElementById("api-spec") !== null) { const app = createApp(APISpec); - app.use(BindOncePlugin); app.mount("#api-spec"); }