mirror of
https://github.com/Xevion/power-math.git
synced 2025-12-08 14:07:55 -06:00
finish settings menu open/close buttons & styling
This commit is contained in:
27
src/components/SettingsMenu.vue
Normal file
27
src/components/SettingsMenu.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div class="modal-card">
|
||||
<header class="modal-card-head">
|
||||
<p class="modal-card-title">Settings</p>
|
||||
<b-icon @click.native="$parent.close()" class="is-clickable" pack="fas" icon="times"></b-icon>
|
||||
</header>
|
||||
<section class="modal-card-body">
|
||||
</section>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
|
||||
</style>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'SettingsMenu',
|
||||
data() {
|
||||
return {
|
||||
levels: []
|
||||
}
|
||||
},
|
||||
created() {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user