generated from Seekra/repository-template
style: reorder imports alphabetically
This commit is contained in:
@@ -15,8 +15,8 @@ limitations under the License.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import Icon from '@/features/icons/components/Icon.vue';
|
||||
import { useSettingsStore } from '../stores/settingsStore';
|
||||
import Icon from '@/features/icons/components/Icon.vue';
|
||||
import { computed, ref, useId, watch } from 'vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
|
||||
@@ -15,10 +15,8 @@ limitations under the License.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import Icon from '@/features/icons/components/Icon.vue';
|
||||
|
||||
import { useSettingsStore } from '../stores/settingsStore';
|
||||
|
||||
import Icon from '@/features/icons/components/Icon.vue';
|
||||
import { computed, ref, useId, watch } from 'vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
|
||||
@@ -15,11 +15,10 @@ limitations under the License.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import Switch from './Switch.vue';
|
||||
import SettingsInput from './SettingsInput.vue';
|
||||
import Selection from './Selection.vue';
|
||||
import SettingsInput from './SettingsInput.vue';
|
||||
import SettingsPageLink from './SettingsPageLink.vue';
|
||||
|
||||
import Switch from './Switch.vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
@@ -15,8 +15,8 @@ limitations under the License.
|
||||
-->
|
||||
|
||||
<script setup>
|
||||
import Icon from '@/features/icons/components/Icon.vue';
|
||||
import { useSettingsPage } from '../composables/useSettingsPage';
|
||||
import Icon from '@/features/icons/components/Icon.vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
@@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import { useSettingsStore } from '../../stores/settingsStore.js';
|
||||
import Selection from '../Selection.vue';
|
||||
import { mountComponent } from '@/test-utils/mountComponent.js';
|
||||
import { useSettingsStore } from '../../stores/settingsStore.js';
|
||||
import { expect, describe, test } from 'vitest';
|
||||
import { nextTick } from 'vue';
|
||||
|
||||
|
||||
@@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import { useSettingsStore } from '../../stores/settingsStore.js';
|
||||
import SettingsInput from '../SettingsInput.vue';
|
||||
import { mountComponent } from '@/test-utils/mountComponent';
|
||||
import { useSettingsStore } from '../../stores/settingsStore.js';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { nextTick } from 'vue';
|
||||
|
||||
|
||||
@@ -14,10 +14,10 @@ See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import { useSettingsStore } from '../../stores/settingsStore.js';
|
||||
import Switch from '../Switch.vue';
|
||||
import { mountComponent } from '@/test-utils/mountComponent.js';
|
||||
import { useSettingsStore } from '../../stores/settingsStore.js';
|
||||
import { expect, describe, test } from 'vitest';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
import { nextTick } from 'vue';
|
||||
|
||||
const getWrapper = function getWrapper({
|
||||
|
||||
Reference in New Issue
Block a user