Изменена архитектура проекта, проправлены инпорты и синтаксис html для pug

This commit is contained in:
DwCay
2022-10-07 16:38:44 +03:00
parent fd3a415788
commit 9471436477
10 changed files with 148 additions and 107 deletions

View File

@@ -0,0 +1,25 @@
<template lang="pug">
button(class="button-plus")
basic-icon(width="12" height="12" icon-color="#4169E1" )
plus-icon
</template>
<script>
import PlusIcon from "@/components/iconsComponents/PlusIcon"
import BasicIcon from "@/components/iconsComponents/basicIcon/BasicIcon";
export default {
name: "ButtonPlus",
components: {BasicIcon, PlusIcon}
}
</script>
<style lang="sass">
.button-plus
outline: none
border: none
cursor: pointer
width: fit-content
background-color: rgba(65, 105, 225, 0.25)
padding: 7px 7px 3px 7px
border-radius: 50%
</style>