この記事では、jquery で単一ファイルの vue コンポーネントをロードする方法を主に紹介します。興味のある方は参考にしていただければ幸いです。
/**注册组件 */ function registerComponent(name){ dm[name] = {}; Vue.component(name + '-component', function(resolve, reject){ $.get('./modules/' + name + '.vue').then(function(rv){ var temp = rv.match(/<template[^>]*>([\s\S]*?)<\/template>/)[1].replace(/(^\s+)|\n/g, ''), script = rv.match(/<script[^>]*>([\s\S]*?)<\/script>/)[1].replace(/(^\s+)|\n/g, ''); script = (new Function('return ' + script))(); script.template = temp; script.props || (script.props=["param"]); script.data || (script.data=function(){ return JSON.parse(JSON.stringify(this.param))}); resolve(script); }).catch(function(err){ console.error(err); resolve({ template: '<p style="text-align:center; line-height:5em;">NOT FOUND</p>' }); }); }); }
関連する推奨事項:
以上がjqueryロード単一ファイルvueコンポーネントメソッド共有の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。