欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vuejs1.x中定义异步组件实例

程序员文章站 2024-01-13 22:42:10
...

官方文档中描述得不是很详细。这里做个笔记。

HTML:

<div id="full">
    <home></home>
</div>

JS:

//定义异步组件,主页
Vue.component('home', function(resolve, reject) {
	$.ajax({
		url: "main.html",
		dataType: 'text',
		type: "get",
		success: function(html) {
			resolve({
				template: html,
				ready: function() {
				}
			});
		}
	});
});

var full = new Vue({
	el: "#full",
	ready: function() {

	},
	data: {
		isLogin: true
	}
});

转载于:https://my.oschina.net/wolfx/blog/841877