Categories: 정보

Nuxt3 Plugins

import는 자동으로 된다.

  • plugins/testPlugins.ts
export default defineNuxtPlugin((nuxtApp) => {
    // Doing something with nuxtApp
    // console.log(nuxtApp);
    return {
        provide: {
            hello: (msg: string) => `Hello ${msg}!`,
        },
    };
});
  • pages/index.vue
<script setup>
    // alternatively, you can also use it here
    const { $hello } = useNuxtApp();
</script>

<template>
    {{ $hello('Good Morning') }}
</template>
mpotioncom

Recent Posts

기초 영어 문장 #3 PDF 파일 첨부

기초 영어 문장으로 다시 시작하는 영어이기에 간단하고 반복적인 것부터 접근해야 합니다. 모르는 단어가 적을수록 자신감이…

2주 ago

기초 영어 문장 #2 PDF 파일 첨부

기초 영어 문장으로 다시 시작하는 영어이기에 간단하고 반복적인 것부터 접근해야 합니다. 모르는 단어가 적을수록 자신감이…

2주 ago

기초 영어 문장 #1 PDF 파일 첨부

기초 영어 문장으로 다시 시작하는 영어이기에 간단하고 반복적인 것부터 접근해야 합니다. 모르는 단어가 적을수록 자신감이…

2주 ago

[Excel Practice 1] Input :: How to enter numbers, letters, dates, times, and double lines

[Excel Practice 1] Input :: How to enter numbers, letters, dates, times, and double lines…

9개월 ago

[Excel] Those who need Excel basics, Need practical applications for Excel

How I got started & who I am hello. I want to learn Excel, but…

9개월 ago

[Google Oauth2] Error GSI_LOGGER : The given client ID is not found, The given origin is not allowed for the given client ID.

Google Oauth2를 작업하고 있을 때 다음과 같은 오류가 발생한다면, 간단하게 체크해볼 사항이 있다. The given…

11개월 ago