Change m.mount to m.component in sample html

This commit is contained in:
sisidovski 2015-11-12 04:34:20 +09:00
parent ab51a055f5
commit b36b9868c5

View file

@ -44,8 +44,8 @@ var ContactsWidget = {
},
view: function(ctrl) {
return [
m.module(ContactForm),
m.module(ContactList)
m.component(ContactForm),
m.component(ContactList)
]
}
}