fix tests on linux

pull/7738/head
ekhaled 8 years ago
parent 73e0181cac
commit 4fe99e0ff3

@ -0,0 +1,17 @@
<div transition:foo><slot></slot></div>
<script>
export default {
transitions: {
foo: function ( node, params ) {
return {
delay: 50,
duration: 100,
tick: t => {
node.foo = t;
}
};
}
}
};
</script>
Loading…
Cancel
Save