Skip to content

Commit

Permalink
deleted console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zh3nyaZh3nya committed Dec 19, 2024
1 parent 1ccea64 commit f6f1ef0
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 12 deletions.
1 change: 0 additions & 1 deletion playground/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

<script setup>
const testButtonNews = () => console.log(cards[1].id)
const cards = [
{
id: 1,
Expand Down
1 change: 0 additions & 1 deletion playground/pages/vacancies.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@
]
const formData = (data) => {
console.log(data)
}
const socials = [
{
Expand Down
2 changes: 1 addition & 1 deletion playground/pages/vacancy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
]
const formData = (data) => {
console.log(data)
}
const socials = [
{
Expand Down
4 changes: 0 additions & 4 deletions src/runtime/components/Parts/Footer/Erg.vue
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,8 @@ const props = defineProps({
const isMultiParagraph = (html: string): boolean => {
if (!html || process.server) return false;
console.log('Checking HTML content:', html);
const parser = new DOMParser();
const doc = parser.parseFromString(html, 'text/html');
const paragraphs = doc.querySelectorAll('p, a, br');
return paragraphs.length > 2;
};
Expand Down
1 change: 0 additions & 1 deletion src/runtime/components/Parts/Forms.vue
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,6 @@ const dataForm = (validForm) => {
} else if(!Object.keys(props.checkboxSetting).length) {
if(inputValues.value.every(value => value)) {
confirmForm.value = true
console.log(inputValues.value)
emit('form-data', [inputValues.value] )
}
} else {
Expand Down
4 changes: 0 additions & 4 deletions src/runtime/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ import vuetify from './plugins/vuetify/index'
import { vMaska } from "maska"

export default defineNuxtPlugin(nuxtApp => {
console.log('Plugin injected by NUXT3-UI-KIT!');

const vuetifyInstance = vuetify(nuxtApp);
nuxtApp.vueApp.use(vuetifyInstance);
nuxtApp.vueApp.directive("maska", vMaska);

if (!process.server && process.env.NODE_ENV !== 'production') console.log('❤️ Initialized Vuetify 3', vuetifyInstance);
});

0 comments on commit f6f1ef0

Please sign in to comment.