搜索

首页  >  问答  >  正文

实现Vue中无需刷新页面即可改变页面方向

我希望当在Pinia中的值发生变化时,也能改变页面的方向,代码运行正常,但页面会重新加载,我不希望页面重新加载。

这是我的App.vue文件

<script setup>
import { useaCountdownStore } from "./stores/countdowns";
import { storeToRefs } from "pinia";

const store = useaCountdownStore();
const { theme, language } = storeToRefs(store);

theme.value === "dark" ? document.documentElement.classList.add("dark") : false; //works
language.value === 'ar' ? document.documentElement.setAttribute('dir','rtl'): false // 需要重新加载页面
</script>

<template>
  <router-view></router-view>
</template>
P粉333395496P粉333395496432 天前596

全部回复(2)我来回复

  • P粉274161593

    P粉2741615932023-09-12 13:06:04

    需要进行常规数据绑定。在这种情况下,使用一个观察者来实现。

    watch(
      language,
      value => {
       if (value === 'ar')
         document.documentElement.setAttribute('dir','rtl')
       else 
         document.documentElement.removeAttribute('dir')
      },
      { immediate: true }
    )

    请确保在服务器端渲染时不要访问document

    回复
    0
  • P粉317679342

    P粉3176793422023-09-12 09:04:32

    尝试将您的内容放在另一个元素中,而不是修改document。此外,使用计算属性进行响应性。

    <script setup>
    import { useaCountdownStore } from "./stores/countdowns";
    import { storeToRefs } from "pinia";
    import { computed } from "vue";
    
    const store = useaCountdownStore();
    const { theme, language } = storeToRefs(store);
    
    const direction = computed(() => language.value === 'ar' ? 'rtl' : 'auto')
    </script>
    
    <template>
      <div :class="theme" :dir="direction">
        <router-view></router-view>
      </div>
    </template>
    

    回复
    0
  • 取消回复