コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
CDN版Vue3でカナ自動入力をしてみた
次の条件のもと作成されています。
・Vue3その他もろもろはインストールしたくない。
・CDNからダウンロードした各種jsを同ドメイン内にアップロードしている。
・CompositionAPIを使用。
【ポイント】
vanilla-autokanaを使用。
https://github.com/ryo-utsunomiya/vanilla-autokana
index.html
<body id="body"> <input type="text" id="name"><br> <input type="text" id="kana"><br> </body>
index.js
'use strict'; Vue.createApp({ setup( ){ let autokana; document.addEventListener("DOMContentLoaded", function() { autokana = AutoKana.bind("#name", "#kana"); }); } }).mount('#body');
検索
コメントを残す