Created
September 14, 2017 09:46
-
-
Save gearmobile/28fb50dbccccc5fd2a0803bdc7a8abad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<div class="jumbotron"> | |
<h1>Jumbotron heading</h1> | |
... | |
</div> | |
<below-fold></below-fold> | |
<!--All the code below here has been put into--> | |
<!--into the above component--> | |
<!--<div class="row marketing"> | |
<div class="col-lg-6"> | |
<h4>Subheading</h4> | |
<p>Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.</p> | |
... | |
</div> | |
... | |
</div>--> | |
</div> | |
</template> | |
<script> | |
const BelowFold = () => import( | |
/* webpackChunkName: "below-fold" */ './BelowFold.vue' | |
); | |
export default { | |
... | |
components: { | |
BelowFold | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment