Skip to content

Commit

Permalink
Reorganize some components
Browse files Browse the repository at this point in the history
  • Loading branch information
ruihildt committed Feb 15, 2024
1 parent 28cc72d commit a65564f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import { computed } from 'vue';
import { NCard, NSwitch, NTooltip } from 'naive-ui';
import CurrentProxyDetails from '@/components/CurrentProxyDetails.vue';
import ProxyButton from '@/components/ProxyStatus/ProxyButton.vue';
import CurrentProxyDetails from '@/components/Proxy/CurrentProxyDetails.vue';
import ProxyGlobalButton from '@/components/Proxy/ProxyGlobalButton.vue';
import TitleCategory from '@/components/TitleCategory.vue';
import useSocksProxy from '@/composables/useSocksProxy';
Expand Down Expand Up @@ -33,6 +33,6 @@ const handleSetGlobalProxy = () => {
</div>

<CurrentProxyDetails v-if="globalProxyDetails.server" :proxy-details="globalProxyDetails" />
<ProxyButton />
<ProxyGlobalButton> Select location </ProxyGlobalButton>
</n-card>
</template>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { computed } from 'vue';
import { NButtonGroup, NCard, NSwitch, NTooltip } from 'naive-ui';
import Button from '@/components/Buttons/Button.vue';
import CurrentProxyDetails from '@/components/CurrentProxyDetails.vue';
import CurrentProxyDetails from '@/components/Proxy/CurrentProxyDetails.vue';
import TitleCategory from '@/components/TitleCategory.vue';
import useActiveTab from '@/composables/useActiveTab';
Expand Down
4 changes: 2 additions & 2 deletions src/popup/views/Proxy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { computed, inject } from 'vue';
import IconLabel from '@/components/IconLabel.vue';
import LocationDrawer from '@/components/ConnectionDetails/LocationDrawer.vue';
import ProxyGlobal from '@/components/ProxyStatus/ProxyGlobal.vue';
import ProxyHost from '@/components/ProxyStatus/ProxyHost.vue';
import ProxyGlobal from '@/components/Proxy/ProxyGlobal.vue';
import ProxyHost from '@/components/Proxy/ProxyHost.vue';
import useActiveTab from '@/composables/useActiveTab';
import { ConnectionKey, defaultConnection } from '@/composables/useConnection';
Expand Down

0 comments on commit a65564f

Please sign in to comment.