cec-nuxt-lib 0.11.6 → 0.11.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import { onMounted } from "vue";
|
|
3
|
-
import {
|
|
2
|
+
import { useScript, onMounted } from "vue";
|
|
3
|
+
import { useState, navigateTo } from "#app";
|
|
4
4
|
const searchTerms = useState("searchTerms");
|
|
5
5
|
const questions = useState("questions");
|
|
6
6
|
const baseUrl = useState("baseUrl");
|
|
@@ -99,7 +99,7 @@ onMounted(() => {
|
|
|
99
99
|
} catch (err) {
|
|
100
100
|
console.log("No cookie control");
|
|
101
101
|
}
|
|
102
|
-
},
|
|
102
|
+
}, 50);
|
|
103
103
|
let accordions = document.getElementsByClassName("access-acc-container");
|
|
104
104
|
if (accordions.length) {
|
|
105
105
|
let hash = window.location.hash;
|
package/package.json
CHANGED