Files
mixtape/zero.Backoffice.UI/app/modules/settings/demo.vue
T

35 lines
1.0 KiB
Vue
Raw Normal View History

2021-12-26 01:42:21 +01:00
<template>
<div>
<ui-header-bar title="Demo" />
<ui-editor config="demo" v-model="model" :meta="meta" :disabled="disabled" />
</div>
</template>
<script>
//import api from './api';
export default {
data: () => ({
meta: {},
model: {
name: 'Tobi',
isActive: true,
2022-01-13 23:07:34 +01:00
icon: 'fth-zap',
2021-12-26 01:42:21 +01:00
number: 17,
output: 'This is an output',
2022-01-13 23:07:34 +01:00
rte: '<p><b>Mudita Center is privacy-focused</b> - it will not store nor share any contact details or any other data with Mudita nor any third parties.</p><p>It is also <u>open-sourced</u> for transparency and available for all three major operating systems - Windows, macOS, and Linux.</p>',
2021-12-26 01:42:21 +01:00
textarea: 'A textarea\nfor you',
2022-01-03 13:25:23 +01:00
state: 'red',
images: ['media.zpkxfjkgciom', 'media.w2cntwlrcueb', 'media.1waxp46ho8hu'],
2022-01-11 23:11:15 +01:00
docs: 'media.xoooo',
productId1: null,
productId2: [],
productId3: null,
2022-01-12 17:15:05 +01:00
link: null
2021-12-26 01:42:21 +01:00
},
route: 'demo',
disabled: false
})
}
</script>