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>
|