Created
October 29, 2018 14:56
-
-
Save boutell/fbdf7fca7f96ff7f332fa8a37a80d4b9 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> | |
<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