Is it possible to using the dot operator to load an image?
Let's talk about this as a sample image URL
<img src={{GET_PROFILE_DATA.googleProfileData.fullName}} alt="profile" class="home-screen-profile-image">
Take note of the unusual looking src attribute here
src={{GET_PROFILE_DATA.googleProfileData.fullName}}
This data is being retrieved from:
<script>
import { mapGetters } from "vuex";
export default {
name: "Profile",
computed: {
...mapGetters(["GET_PROFILE_DATA"])
}
};
</script>
[Question:] How can I use the dot operator to load an image in this case?