父子template 传值
< template name = "A" > 123{{test}}
|
启动代码
< template is = "B" data = "{{str:'456',name:'A'}}" /> |
这段代码中 {{name}} 是通过父级传值穿过来选择到的模板,这里显示正确 显示内容456\n123,
后面data={{a}}里面的内容在父级完全不会写了
< template is = "B" data = "{{str:'456',name:'A',a:{test:567}}}" /> |
这样写会报错,
< template is = "B" data = "{{str:'456',name:'A',a:'test:567'}}" /> |
没有效果。
我反而在想是不是全局的data
于是我在js里面填入了如下代码:
data: { a:{test: '567' }, }, |
依然没有任何效果,求解答 这里如何写。
先在这里谢谢了