import는 자동으로 된다.
export default defineNuxtPlugin((nuxtApp) => {
// Doing something with nuxtApp
// console.log(nuxtApp);
return {
provide: {
hello: (msg: string) => `Hello ${msg}!`,
},
};
});
<script setup>
// alternatively, you can also use it here
const { $hello } = useNuxtApp();
</script>
<template>
{{ $hello('Good Morning') }}
</template>
[Excel Practice 1] Input :: How to enter numbers, letters, dates, times, and double lines…
How I got started & who I am hello. I want to learn Excel, but…
Google Oauth2를 작업하고 있을 때 다음과 같은 오류가 발생한다면, 간단하게 체크해볼 사항이 있다. The given…