cec-nuxt-lib 0.10.9 → 0.10.10
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,7 +1,7 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { onMounted } from "vue";
|
|
3
3
|
import { useState, navigateTo } from "#app";
|
|
4
|
-
const
|
|
4
|
+
const searchTerms = useState("searchTerms");
|
|
5
5
|
const questions = useState("questions");
|
|
6
6
|
const baseUrl = useState("baseUrl");
|
|
7
7
|
const page = useState("page");
|
|
@@ -398,7 +398,7 @@ onMounted(() => {
|
|
|
398
398
|
<div class="cec-search-site">
|
|
399
399
|
<div
|
|
400
400
|
class="sys_search-query-control"
|
|
401
|
-
:class="{ 'd-none': !showSiteSearch }"
|
|
401
|
+
:class="{ 'd-none': !page.showSiteSearch }"
|
|
402
402
|
>
|
|
403
403
|
<label for="searchTextBox" class="hidden sys_search-label"
|
|
404
404
|
>Search</label
|
package/package.json
CHANGED