InputManJSのコントロールを使用したNuxt.jsアプリケーションを作成するには、次の手順に従います。(その他のコントロールの作成方法は、各コントロールののサンプルを参照してください。)
以下の手順では、事前にNodeJSがコンピュータにインストールされている必要があります。
npx nuxi@latest init inputmanjs-nuxt
cd inputmanjs-nuxt
npm install @mescius/inputman.vue
<script setup>
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { GcTextBoxComponent } from '@mescius/inputman.vue';
// textプロパティに割り当てる値を設定します。
const textValue = 'テキスト';
// ontextchangedイベント用の関数を定義します。
const textChanged = (sender) => console.log(`テキストは"${sender.text}"に変更されました。`);
</script>
<template>
<div>
<GcTextBoxComponent
:text="textValue"
@ontextchanged="textChanged"
></GcTextBoxComponent>
</div>
</template>
<template>
<div>
<p> Nuxt.JS v3 + InputManJS demo </p>
<TextBox />
</div>
</template>
export default defineNuxtConfig({ ssr: false })
npm run dev
http://localhost:3000/
」を参照し、アプリケーションを表示します。