Skip to content

Commit 3e8529f

Browse files
committed
Erro no módulo de books :/
1 parent 819f385 commit 3e8529f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

assets/fonts/Preciosa-VVKw.ttf

52.2 KB
Binary file not shown.

components/organisms/Presentation.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
</template>
1616

1717
<style lang="scss" scoped>
18+
@font-face {
19+
font-family: Preciosa;
20+
src: url(@/assets/fonts/Preciosa-VVKw.ttf);
21+
}
22+
1823
.presentation {
1924
display: grid;
2025
grid-template-columns: repeat(2, 1fr);
@@ -34,6 +39,7 @@
3439
b {
3540
font-family: Preciosa;
3641
font-size: 46px;
42+
font-weight: 200;
3743
}
3844
}
3945
</style>

pages/index.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,11 @@
66
import Vue from 'vue'
77
// -----------Fazendo o SSR (SEMPRE NAS PAGES):
88
// 1º Importamos o modulo definido na pasta store:
9-
import { books } from '@/store'
109
1110
export default Vue.extend({
1211
layout: 'iBook',
1312
/* Testando o módulo:
1413
(sendo esse módulo assíncrono para a página
1514
só ser exibida depois que os livros carregarem): */
16-
async asyncData() {
17-
await books.index()
18-
},
1915
})
2016
</script>

0 commit comments

Comments
 (0)