[temp - debug]: log out the preload value

This commit is contained in:
Luke Edwards
2018-01-06 15:40:40 -08:00
parent 5aa01b922b
commit 1b73baabce

View File

@@ -2,8 +2,10 @@
<script> <script>
export default { export default {
preload({ url }) { preload(foo) {
let url = foo.url;
console.log('> i am here', url, foo);
return { url }; return { url };
} }
}; };
</script> </script>