1234567891011121314151617181920212223 |
- <template>
- <van-config-provider :theme-vars="themeVars">
- <NuxtLayout>
- <NuxtPage />
- </NuxtLayout>
- </van-config-provider>
- </template>
- <script setup>
- const themeVars = reactive({
- primaryColor: "#FD9A00",
- buttonPrimaryBackground: "#22C2A0",
- buttonPrimaryBorderColor: "#22C2A0",
- searchPadding: "0px",
- dividerLineHeight: "1px",
- dividerContentPadding: "0",
- dividerMargin: "0",
- dividerVerticalMargin: "0",
- dropdownMenuTitleActiveTextColor: "#ff9300",
- treeSelectItemActiveColor: "#ff9300",
- sidebarSelectedBorderColor: "#ff9300",
- });
- </script>
|