1
0
mirror of synced 2025-02-17 05:03:13 +03:00
vue-formulario/examples/FormulateSpecimens.vue

28 lines
363 B
Vue
Raw Normal View History

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