コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
CDN版Vue3で孫SFCを読み込んでみた
次の条件のもと作成されています。
・Vue3その他もろもろはインストールしたくない。
・CDNからダウンロードした各種jsを同ドメイン内にアップロードしている。
・CompositionAPIを使用。
index.html
<div id="app"> <compo-child></compo-child> </div>
index.js
'use strict'; (function($){ $(document).ready(function(){ Vue.createApp({ setup( ){ } ,components: { 'compo-child': Vue.defineAsyncComponent( () => window['loadModule']('child.vue', window['loaderOption']() ) ) } }).mount('#app'); }); window['loadModule'] = window['vue3-sfc-loader']['loadModule']; window['loaderOption'] = function(){ return{ moduleCache: { vue: Vue } ,getFile(url){ url = /.*?\.js|.mjs|.css|.less|.vue$/.test(url) ? url : `${url}.vue`; url += "?" + Math.random(); const type = /.*?\.js|.mjs$/.test(url) ? ".mjs" : /.*?\.vue$/.test(url) ? ".vue" : /.*?\.css$/.test(url) ? ".css" : ".vue"; const getContentData = (asBinary) => fetch(url).then((res) => !res.ok ? Promise.reject(url) : asBinary ? res.arrayBuffer() : res.text() ); return { getContentData: getContentData, type: type }; } ,addStyle(textContent) { let styleElement = document.createElement("style"); document.head.insertBefore( Object.assign(styleElement, { textContent }) ,document.head.getElementsByTagName("style")[0] || null ); } ,handleModule(type, getContentData, path, options) { switch (type) { case ".css": return options.addStyle(getContentData(false)); case ".less": console.error("......."); } } ,log(type, ...args) { console.log(type, ...args); } } }; })(jQuery);
child.vue
<template> <div>Children</div> <grand-child></grand-child> </template> <script scoped> export default{ setup(){ } ,components: { 'grand-child': Vue.defineAsyncComponent( () => window['loadModule']('grand_child.vue', window['loaderOption']() ) ) } } </script>
grand_child.vue
<template> <div>Grand Children</div> </template> <script scoped> export default{ setup(){ } } </script>
検索
コメントを残す