コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
Vue3をインストールせずにSFC内で文字列を表示してみた【CompositionAPI編】
次の条件のもと作成されています。
・Vue3その他もろもろはインストールしたくない。
・CDNからダウンロードした各種jsを同ドメイン内にアップロードしている。
・CompositionAPIを使用。
index.html
<div id="app"> <compo-string></compo-string> </div>
index.js
const { loadModule } = window['vue3-sfc-loader']; Vue.createApp({ setup( ){ }, components: { 'compo-string': Vue.defineAsyncComponent( () => loadModule('compo_string.vue', vue3['loaderOption']() ) ) } }).mount('#app');
compo_string.vue
<template> <h2> This is compo-string. </h2> <h3>{{ h3String }}</h3> </template> <script scoped> export default{ setup(){ const h3String = "This is compo-string variable."; return { h3String }; } } </script>
検索
コメントを残す