Last active
November 16, 2019 04:08
-
-
Save syuji-higa/eae8ea0f568b8113dd3863571022bfe7 to your computer and use it in GitHub Desktop.
Nuxt.js - costom loadingIndicator
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
const nuxtConfig = { | |
loadingIndicator: { | |
name: '~/template/spa-loading.html' | |
} |
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
<style> | |
body, html { | |
background: #fff; | |
width: 100%: | |
height: 100%; | |
} | |
</style> | |
<div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment