Integrating vue-auth-image plugin into Nuxt.jsNuxt.js Vue error in installingVue-i18n image name from json file doesn't show in Vuetify carousel (through v-for and :src of the translation )Nuxt.js and Vue-i18next: Error: Cannot resolve “vue-i18next”Laravel Vue.js integration with CKeditor 4 and CKFinder3 (file manager)Using vue-underscore in Nuxt.jsresponsive-loader with nuxt.jsHow to Install Vue Packages in nuxt.jsAdding options to Vue-flickity as a Nuxt.js plugin?Nuxt.js and anchors

How do I create indestructible terrain?

How does a simple logistic regression model achieve a 92% classification accuracy on MNIST?

If I want an interpretable model, are there methods other than Linear Regression?

Asked to Not Use Transactions and to Use A Workaround to Simulate One

Can I tap all my opponent's lands while they're casting a spell to negate it?

Real mode flat model

How are aircraft depainted?

Can you add polynomial terms to multiple linear regression?

Is low emotional intelligence associated with right-wing and prejudiced attitudes?

How to be sure services and researches offered by the University are not becoming cases of unfair competition?

What jurisdiction do Scottish courts have over the Westminster parliament?

Is "you will become a subject matter expert" code for "you'll be working on your own 100% of the time"?

Output a Super Mario Image

Make 2019 with single digits

Telling my mother that I have anorexia without panicking her

Is Schwarzschild's solution in his original paper consistent with current solutions?

What made 4/4 time the most common time signature?

What is the name of this Allen-head furniture fastener?

Which is the current decimal separator?

Does a succubus' charm end when it dies?

In what sequence should an advanced civilization teach technology to medieval society to maximize rate of adoption?

How do EVA suits manage water excretion?

Is there any way to land a rover on the Moon without using any thrusters?

Specific filter on the set using Python



Integrating vue-auth-image plugin into Nuxt.js


Nuxt.js Vue error in installingVue-i18n image name from json file doesn't show in Vuetify carousel (through v-for and :src of the translation )Nuxt.js and Vue-i18next: Error: Cannot resolve “vue-i18next”Laravel Vue.js integration with CKeditor 4 and CKFinder3 (file manager)Using vue-underscore in Nuxt.jsresponsive-loader with nuxt.jsHow to Install Vue Packages in nuxt.jsAdding options to Vue-flickity as a Nuxt.js plugin?Nuxt.js and anchors






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am trying to integrate vue-auth-image plugin to Nuxt.js.



In plugins/auth-images.js:



import Vue from 'vue' 
import VueAuthImage from 'vue-auth-image'
import axios from 'axios'
Vue.use(VueAuthImage)

if (process.browser)
const authHeader = 'Bearer ' + localStorage.getItem('my-own-id-token')
axios.defaults.headers.common.Authorization = authHeader



In nuxt.config.js, I call this plugin:



plugins: [ 
'@/plugins/auth-images'
]


Later in my code, I apply this:



<img v-auth-img="link/to/my/api/endpoint">


In the console I get this:




[Vue warn]: Failed to resolve directive: auth-img




How to fix this?










share|improve this question


























  • You named the file auth-images.js so there's a typo in your config @/plugins/auth-images instead of @/plugins/vauth-images.

    – Ana Liza Pandac
    Mar 28 at 12:22











  • Thanks for the attention, and sorry, I just did the typo here, in my actual code I did not and I used a different name

    – Begueradj
    Mar 28 at 13:13

















0















I am trying to integrate vue-auth-image plugin to Nuxt.js.



In plugins/auth-images.js:



import Vue from 'vue' 
import VueAuthImage from 'vue-auth-image'
import axios from 'axios'
Vue.use(VueAuthImage)

if (process.browser)
const authHeader = 'Bearer ' + localStorage.getItem('my-own-id-token')
axios.defaults.headers.common.Authorization = authHeader



In nuxt.config.js, I call this plugin:



plugins: [ 
'@/plugins/auth-images'
]


Later in my code, I apply this:



<img v-auth-img="link/to/my/api/endpoint">


In the console I get this:




[Vue warn]: Failed to resolve directive: auth-img




How to fix this?










share|improve this question


























  • You named the file auth-images.js so there's a typo in your config @/plugins/auth-images instead of @/plugins/vauth-images.

    – Ana Liza Pandac
    Mar 28 at 12:22











  • Thanks for the attention, and sorry, I just did the typo here, in my actual code I did not and I used a different name

    – Begueradj
    Mar 28 at 13:13













0












0








0








I am trying to integrate vue-auth-image plugin to Nuxt.js.



In plugins/auth-images.js:



import Vue from 'vue' 
import VueAuthImage from 'vue-auth-image'
import axios from 'axios'
Vue.use(VueAuthImage)

if (process.browser)
const authHeader = 'Bearer ' + localStorage.getItem('my-own-id-token')
axios.defaults.headers.common.Authorization = authHeader



In nuxt.config.js, I call this plugin:



plugins: [ 
'@/plugins/auth-images'
]


Later in my code, I apply this:



<img v-auth-img="link/to/my/api/endpoint">


In the console I get this:




[Vue warn]: Failed to resolve directive: auth-img




How to fix this?










share|improve this question
















I am trying to integrate vue-auth-image plugin to Nuxt.js.



In plugins/auth-images.js:



import Vue from 'vue' 
import VueAuthImage from 'vue-auth-image'
import axios from 'axios'
Vue.use(VueAuthImage)

if (process.browser)
const authHeader = 'Bearer ' + localStorage.getItem('my-own-id-token')
axios.defaults.headers.common.Authorization = authHeader



In nuxt.config.js, I call this plugin:



plugins: [ 
'@/plugins/auth-images'
]


Later in my code, I apply this:



<img v-auth-img="link/to/my/api/endpoint">


In the console I get this:




[Vue warn]: Failed to resolve directive: auth-img




How to fix this?







vue.js vuejs2 nuxt.js nuxt






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 28 at 13:18









Styx

6,0436 gold badges29 silver badges40 bronze badges




6,0436 gold badges29 silver badges40 bronze badges










asked Mar 28 at 10:55









BegueradjBegueradj

1691 silver badge12 bronze badges




1691 silver badge12 bronze badges















  • You named the file auth-images.js so there's a typo in your config @/plugins/auth-images instead of @/plugins/vauth-images.

    – Ana Liza Pandac
    Mar 28 at 12:22











  • Thanks for the attention, and sorry, I just did the typo here, in my actual code I did not and I used a different name

    – Begueradj
    Mar 28 at 13:13

















  • You named the file auth-images.js so there's a typo in your config @/plugins/auth-images instead of @/plugins/vauth-images.

    – Ana Liza Pandac
    Mar 28 at 12:22











  • Thanks for the attention, and sorry, I just did the typo here, in my actual code I did not and I used a different name

    – Begueradj
    Mar 28 at 13:13
















You named the file auth-images.js so there's a typo in your config @/plugins/auth-images instead of @/plugins/vauth-images.

– Ana Liza Pandac
Mar 28 at 12:22





You named the file auth-images.js so there's a typo in your config @/plugins/auth-images instead of @/plugins/vauth-images.

– Ana Liza Pandac
Mar 28 at 12:22













Thanks for the attention, and sorry, I just did the typo here, in my actual code I did not and I used a different name

– Begueradj
Mar 28 at 13:13





Thanks for the attention, and sorry, I just did the typo here, in my actual code I did not and I used a different name

– Begueradj
Mar 28 at 13:13












1 Answer
1






active

oldest

votes


















1
















The directive is not auth-img, but auth-image, so correct code is:



<img v-auth-image=





share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );














    draft saved

    draft discarded
















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55395821%2fintegrating-vue-auth-image-plugin-into-nuxt-js%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1
















    The directive is not auth-img, but auth-image, so correct code is:



    <img v-auth-image=





    share|improve this answer





























      1
















      The directive is not auth-img, but auth-image, so correct code is:



      <img v-auth-image=





      share|improve this answer



























        1














        1










        1









        The directive is not auth-img, but auth-image, so correct code is:



        <img v-auth-image=





        share|improve this answer













        The directive is not auth-img, but auth-image, so correct code is:



        <img v-auth-image=






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jun 26 at 12:35









        user3844761user3844761

        261 bronze badge




        261 bronze badge





















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.




















            draft saved

            draft discarded















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55395821%2fintegrating-vue-auth-image-plugin-into-nuxt-js%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해