From 5a336d745c30fdfa194aeb6aaadf83a807bbd3f4 Mon Sep 17 00:00:00 2001 From: rockisch Date: Mon, 10 Feb 2025 16:57:53 -0300 Subject: [PATCH] Update incorrect GettingStarted CDN instructions The project moved from exposing itself from "window.VueMultiselect" to "window['vue-multiselect']" when it transictioned to 3.0. --- documentation/src/GettingStarted.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/GettingStarted.vue b/documentation/src/GettingStarted.vue index fb0aa678..01f08812 100644 --- a/documentation/src/GettingStarted.vue +++ b/documentation/src/GettingStarted.vue @@ -57,7 +57,7 @@

via CDN

// register globally
-app.component('vue-multiselect', window.VueMultiselect.default)
+app.component('vue-multiselect', window['vue-multiselect'].default)