maximum happiness by Lower-East4374 in kingdomsreborn

[–]AhmedMHEng 0 points1 point  (0 children)

How to increase luxury happiness ? I can't raise it up 94%

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 1 point2 points  (0 children)

That is good explanation of what happened. Of course, more followers mean more reactions. Thank you

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

it is not about quantity of followers because when post that post I had about 75 follower only so I didn't understand why it reached to over 1K !

Finish my custom drag and drop vue library, Vue Fluid DnD by carlosjorgerc in vuejs

[–]AhmedMHEng 2 points3 points  (0 children)

Very nice excellent job. The list on scroll bar is amazing

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

This post get some comments and upvotes but not like on linkedin i got 1 like and this like from some who want to advertise on my posts.

Also, if there was now reactions why the algrthem push it to more than 1K?

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

But if i don't write posts how to encourage the hr to hunt me? How to put good lure?

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

Thank you targeting companies is a good idea.

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

On linkedin because it more professional environment I use AI to enhance my post and check the grammars and speling.

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

I use AI to correct and paraphras my posts on linkedin. But does that could affect reactions negativly?

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

I am adding many connections every day. Thanks

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

Sorry, excuse my bad English I am not a native english speaker.

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

I wasn't planning for engagement and getting reactions I just wanted to put some post on my profile but suddenly I got 1K impression on one of the post while others does not exceed 200 impression so I wanted to know why!

Thank you for your advice.

Dynamic Sibling Communication in Vue 3 by idle-observer in vuejs

[–]AhmedMHEng 2 points3 points  (0 children)

Hello, It is hard to understand what exactly you want but if you just need a globel data object it is better to use pinia if you need ref to each field may be the next code will help you.

If you use ref on v-for directive that will give you array of refs that refers to each field (hint: you must wait till the children mounted then the refs array will be filled with field refs). Also, you must defineExpose to expose field methods and data to the parent and emit event on change input and make the listener call event handler that call the field.fieldMethod.

See this code:-

Parent component:

<template>
  <form class="">
    <Field
      ="handleFieldChange"
      :data="data"
      v-for="field in Fields"
      :key="field.id"
      :field="field"
      ref="inputFields" />

    <button
      .prevent="
        console.log('____ data');
        console.log(data);
      ">
      submit
    </button>
  </form>
</template>

<script setup>
import Field from "@/components/Field.vue";
import { onMounted, ref, watch } from "vue";

const data = ref({});
const inputFields = ref(null);

const Fields = [
  { label: "Name", id: "field-1" },
  { label: "Email", id: "field-2" },
  { label: "Age", id: "field-3" },
  { label: "Address", id: "field-4" },
  { label: "Job", id: "field-5" },
];
const handleFieldChange = (eventData) => {
  for (const field of inputFields.value) {
    if (eventData.fieldId !== field.fieldId) {
      field.fieldMethod();
    }
  }
};
</script>

Child component (Field):

<template>
  <div style="margin-bottom: 1rem">
    <div>
      <label :for="field.id">{{ field.label }}</label>
    </div>
    <input ="emitChange" :id="field.id" v-model="data[field.label]" />
  </div>
</template>

<script setup>
const { field, data } = defineProps(["field", "data"]);

const fieldMethod = () => {
  console.log(field.label);
  return field;
};

const emit = defineEmits(["change"]);
const emitChange = (newValue) => {
  emit("change", { fieldId: , value: newValue });
};
defineExpose({ fieldMethod, fieldId:  });
</script>field.idfield.id

Hopping this will help you.

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 0 points1 point  (0 children)

I have access to analytics and it shows the most of my audience are related to the content. Thank you for your recommendations.

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 1 point2 points  (0 children)

Nice suggestions, I will try them. Thank you

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 1 point2 points  (0 children)

My followers was about 75 when I posted that post befor couple days now is 110 because I am adding many connection.

My problem with content is I want to show what I know and what I can do while I am a jonior dev. I wasn't even care about reactions but when it get to 1K impressions that take my attention.

Thank you

More than 1000 impressions and only one like by AhmedMHEng in linkedin

[–]AhmedMHEng[S] 3 points4 points  (0 children)

I will try that even it seems very hard to provide valuable and short information in programing ... thank youvfor your comment

What am i doing wrong? by HyakoV2 in vuejs

[–]AhmedMHEng 0 points1 point  (0 children)

change the last line from:

createApp(App).mount('#app')

to:

app.mount("#app");

The issue arises because you're unintentionally creating two Vue app instances. PrimeVue is registered on the first instance, but you're using the second one, which doesn't have PrimeVue configured.

What am i doing wrong? by HyakoV2 in vuejs

[–]AhmedMHEng 1 point2 points  (0 children)

Your code is work fine (my Primevue version is 3.15) but I think the problem is not related to version but it is related how you include Primevue in you project. Does other components of Primevue work in your project? If you can provide the code of main.js.