Created
February 18, 2019 14:50
-
-
Save hawkeye64/1af6f7b8014c10abc4986a1a00385c2c to your computer and use it in GitHub Desktop.
MyLayout script section
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
<script> | |
import { openURL } from 'quasar' | |
export default { | |
name: 'MyLayout', | |
data () { | |
return { | |
leftDrawerOpen: this.$q.platform.is.desktop | |
} | |
}, | |
mounted () { | |
console.log(process.env) | |
}, | |
methods: { | |
openURL | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment