使用插槽从组件访问数据时遇到问题。
这是我的代码:
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>update build artifacts</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>jar</executable>
<commandlineArgs>-uvf target/your.jar .profile</commandlineArgs>
</configuration>
</execution>
</executions>
</plugin>
我想要这行:
codepen.io/anon/pen/BbOEZz
它开始工作,并在模板的插槽中显示带有日期的值。
有人可以帮我解决这个问题吗?