Skip to content

Instantly share code, notes, and snippets.

@JamieCurnow
Created October 16, 2018 00:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JamieCurnow/48f0857836ffed0456b1ca1ae38f49f1 to your computer and use it in GitHub Desktop.
Save JamieCurnow/48f0857836ffed0456b1ca1ae38f49f1 to your computer and use it in GitHub Desktop.
<template lang="html">
<RadSideDrawer ref="drawer" drawerLocation="Left" :gesturesEnabled="gesturesEnabled">
<StackLayout ~drawerContent backgroundColor="#ffffff">
<slot name="drawerContent"></slot>
</StackLayout>
<Frame ~mainContent>
<slot name="mainContent"></slot>
</Frame>
</RadSideDrawer>
</template>
<script>
import sideDrawer from '~/mixins/sideDrawer'
export default {
mixins: [sideDrawer]
}
</script>
<style lang="css">
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment