1
0
mirror of synced 2024-11-23 05:46:05 +03:00
vue-formulario/examples/FormulateSpecimens.vue

28 lines
363 B
Vue
Raw Normal View History

2020-03-27 16:39:47 +03:00
<template>
<div id="app">
2020-03-29 04:56:11 +03:00
<SpecimenText />
2020-03-27 16:39:47 +03:00
</div>
</template>
<script>
2020-03-29 04:56:11 +03:00
import SpecimenText from './specimens/SpecimenText'
2020-03-27 16:39:47 +03:00
export default {
name: 'App',
2020-03-29 04:56:11 +03:00
components: {
SpecimenText
},
2020-03-27 16:39:47 +03:00
data () {
return {
}
}
}
</script>
<style lang="scss">
@import '../themes/snow/snow.scss';
2020-03-29 04:56:11 +03:00
body {
font-family: $formulate-font-stack;
}
2020-03-27 16:39:47 +03:00
</style>