我有两个组件DialogOverviewExample和DialogOverviewExampleDialog。我在DialogOverviewExample中有'Element'对象,我想传递这个Element 到DialogOverviewExampleDialog如何通过这个
DialogOverviewExample组件中的以下对象存储
Element = [
{position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},
{position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},
{position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},
{position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'}
];
我希望在DialogOverviewExample组件上打印
检查上面的链接以获取我的组件代码。帮助我
答案 0 :(得分:0)
在struct Foo {
void baz() {
bar(); // ok, even if bar comes later
}
void bar() {
printf("Hello, world.\n");
}
};
函数上,不是只是将openDialog
传递给Element
吗?
data
或者我在你的问题中遗漏了一些细节?
如果你想传递你在代码中的其他细节,它将变成类似
的东西data: this.Element