diff options
| author | Pitu <[email protected]> | 2018-09-16 01:09:02 -0300 |
|---|---|---|
| committer | Pitu <[email protected]> | 2018-09-16 01:09:02 -0300 |
| commit | fe10a00ba9a3c30d8718ca004ccd19518466f5bd (patch) | |
| tree | 369752f59a88dd03df1e9752be0ba166bf93c933 /src/site/views/dashboard/Settings.vue | |
| parent | First version of start script (diff) | |
| download | host.fuwn.me-fe10a00ba9a3c30d8718ca004ccd19518466f5bd.tar.xz host.fuwn.me-fe10a00ba9a3c30d8718ca004ccd19518466f5bd.zip | |
Site
Diffstat (limited to 'src/site/views/dashboard/Settings.vue')
| -rw-r--r-- | src/site/views/dashboard/Settings.vue | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/site/views/dashboard/Settings.vue b/src/site/views/dashboard/Settings.vue new file mode 100644 index 0000000..1a3ab68 --- /dev/null +++ b/src/site/views/dashboard/Settings.vue @@ -0,0 +1,82 @@ +<style lang="scss" scoped> + @import '../../styles/colors.scss'; + section { background-color: $backgroundLight1 !important; } + section.hero div.hero-body { + align-items: baseline; + } + div.search-container { + display: flex; + justify-content: center; + } +</style> +<style lang="scss"> + @import '../../styles/colors.scss'; +</style> + + +<template> + <section class="hero is-fullheight"> + <div class="hero-body"> + <div class="container"> + <div class="columns"> + <div class="column is-narrow"> + <Sidebar/> + </div> + <div class="column"> + <!-- + <h1 class="title">Uploads</h1> + <h2 class="subtitle">Keep track of all your uploads in here</h2> + <hr> + --> + + <div class="field"> + <b-switch v-model="options.removeExif" + true-value="Remove exif data when uploading files" + false-value="Don't remove exif data when uploading files" + type="is-success"> + {{ options.removeExif }} + </b-switch> + </div> + </div> + </div> + </div> + </div> + </section> +</template> + +<script> +import Sidebar from '../../components/sidebar/Sidebar.vue'; +import Grid from '../../components/grid/Grid.vue'; +// import Waterfall from '../../components/waterfall/Waterfall.vue'; +// import WaterfallItem from '../../components/waterfall/WaterfallItem.vue'; + +export default { + components: { + Sidebar, + Grid + // Waterfall, + // WaterfallSlot + // WaterfallItem + }, + data() { + return { + options: { + removeExif: false + } + }; + }, + metaInfo() { + return { title: 'Settings' }; + }, + mounted() { + this.$ga.page({ + page: '/dashboard/settings', + title: 'Settings', + location: window.location.href + }); + }, + methods: { + + } +}; +</script> |