直接上代码
const app = createApp({
render() {
const list = ['Item 1', 'Item 2', 'Item 3'];
return h('ul', {}, list.map(item =>
h('li', {}, item)
)));
}
});
直接上代码
const app = createApp({
render() {
const list = ['Item 1', 'Item 2', 'Item 3'];
return h('ul', {}, list.map(item =>
h('li', {}, item)
)));
}
});