Skip to content

Instantly share code, notes, and snippets.

@boutell
Created October 29, 2018 14:56
Show Gist options
  • Save boutell/fbdf7fca7f96ff7f332fa8a37a80d4b9 to your computer and use it in GitHub Desktop.
Save boutell/fbdf7fca7f96ff7f332fa8a37a80d4b9 to your computer and use it in GitHub Desktop.
<template>
<ApostropheModal @close="$emit('close')">
<template slot="header">
<p>New {{ options.label }}</p>
</template>
<template slot="body">
<ApostropheSchemaEditor :fields="options.schema" v-model="pieceInfo" />
</template>
<template slot="footer">
<slot name="footer">
<button class="modal-default-button" @click="$emit('close')">
Cancel
</button>
<button v-if="!pieceInfo.hasErrors" class="modal-default-button" @click="save()">
Save
</button>
</slot>
</template>
</ApostropheModal>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment