app.vue 575 B

1234567891011121314151617181920212223
  1. <template>
  2. <van-config-provider :theme-vars="themeVars">
  3. <NuxtLayout>
  4. <NuxtPage />
  5. </NuxtLayout>
  6. </van-config-provider>
  7. </template>
  8. <script setup>
  9. const themeVars = reactive({
  10. primaryColor: "#FD9A00",
  11. buttonPrimaryBackground: "#22C2A0",
  12. buttonPrimaryBorderColor: "#22C2A0",
  13. searchPadding: "0px",
  14. dividerLineHeight: "1px",
  15. dividerContentPadding: "0",
  16. dividerMargin: "0",
  17. dividerVerticalMargin: "0",
  18. dropdownMenuTitleActiveTextColor: "#ff9300",
  19. treeSelectItemActiveColor: "#ff9300",
  20. sidebarSelectedBorderColor: "#ff9300",
  21. });
  22. </script>