1
0
mirror of synced 2024-11-22 21:36:04 +03:00
vue-formulario/examples/FormulateSpecimens.vue
2020-03-28 21:56:11 -04:00

28 lines
363 B
Vue

<template>
<div id="app">
<SpecimenText />
</div>
</template>
<script>
import SpecimenText from './specimens/SpecimenText'
export default {
name: 'App',
components: {
SpecimenText
},
data () {
return {
}
}
}
</script>
<style lang="scss">
@import '../themes/snow/snow.scss';
body {
font-family: $formulate-font-stack;
}
</style>