Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/export import #9

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pages/Crud.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script setup>
import { FilterMatchMode } from 'primevue/api';
import { ref, onMounted, onBeforeMount } from 'vue';
import ProductService from '@/service/ProductService';
import { useToast } from 'primevue/usetoast';
import { ProductService } from '../service/ProductService';

const toast = useToast();

Expand Down
4 changes: 2 additions & 2 deletions pages/uikit/FloatLabel.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import { ref, onMounted } from 'vue';
import CountryService from '@/service/CountryService';
import { CountryService } from '../../service/CountryService';

const countries = ref([]);
const cities = ref([
Expand Down Expand Up @@ -33,7 +33,7 @@ const searchCountry = (event) => {
const query = event.query;
for (let i = 0; i < countries.value.length; i++) {
const country = countries.value[i];
if (country.name.toLowerCase().indexOf(query.toLowerCase()) == 0) {
if (country.name.toLowerCase().indexOf(query.toLowerCase()) === 0) {
filtered.push(country);
}
}
Expand Down
4 changes: 2 additions & 2 deletions pages/uikit/Input.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup>
import { ref, onMounted } from 'vue';
import CountryService from '@/service/CountryService';
import NodeService from '@/service/NodeService';
import { CountryService } from '../../service/CountryService';
import { NodeService } from '../../service/NodeService';

const floatValue = ref(null);
const autoValue = ref(null);
Expand Down
2 changes: 1 addition & 1 deletion pages/uikit/InvalidState.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import { ref, onMounted } from 'vue';
import CountryService from '@/service/CountryService';
import { CountryService } from '../../service/CountryService';

const countries = ref(null);
const filteredCountries = ref(null);
Expand Down
2 changes: 1 addition & 1 deletion pages/uikit/List.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import { ref, onMounted } from 'vue';
import ProductService from '@/service/ProductService';
import { ProductService } from '../../service/ProductService';

const picklistValue = ref([
[
Expand Down
2 changes: 1 addition & 1 deletion pages/uikit/Overlay.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import ProductService from '@/service/ProductService';
import { ProductService } from '../../service/ProductService';
import { ref, onMounted } from 'vue';
import { useToast } from 'primevue/usetoast';
import { useConfirm } from 'primevue/useconfirm';
Expand Down
5 changes: 3 additions & 2 deletions pages/uikit/Table.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<script setup>
import { FilterMatchMode, FilterOperator } from 'primevue/api';
import CustomerService from '@/service/CustomerService';
import ProductService from '@/service/ProductService';
import { ref, onBeforeMount } from 'vue';
import { CustomerService } from '../../service/CustomerService';
import { ProductService } from '../../service/ProductService';


const customer1 = ref(null);
const customer2 = ref(null);
Expand Down