diff --git a/src/App.vue b/src/App.vue index 2bd170b..7612d5a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,60 +1,82 @@ - - Фон - - - Цвет {{ imageBackgroundColor }} - - - - - - - Линии + + + Цвет {{ imageBackgroundColor }} + + + Отступ по горизонтали, мм Отступ по вертикали, мм - - - Изображение + + Высота, мм Ширина, мм - - A5 - A4 - Повернуть - - Сохранить как png - + + + A5 + + + A4 + + + Повернуть + + + Сохранить как png + diff --git a/src/components/Button.vue b/src/components/Button.vue new file mode 100644 index 0000000..727d4bb --- /dev/null +++ b/src/components/Button.vue @@ -0,0 +1,46 @@ + + + + + + + + + diff --git a/src/components/ButtonsBar.vue b/src/components/ButtonsBar.vue new file mode 100644 index 0000000..5dca330 --- /dev/null +++ b/src/components/ButtonsBar.vue @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/components/Input.vue b/src/components/Input.vue index 0c61ba2..9e80ae0 100644 --- a/src/components/Input.vue +++ b/src/components/Input.vue @@ -1,30 +1,53 @@ - - - - - - - + + + + + + + diff --git a/src/components/SidebarBlock.vue b/src/components/SidebarBlock.vue new file mode 100644 index 0000000..bf6f38a --- /dev/null +++ b/src/components/SidebarBlock.vue @@ -0,0 +1,26 @@ + + + + + {{ title }} + + + + + diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..fd095ce --- /dev/null +++ b/src/style.css @@ -0,0 +1,5 @@ +@font-face { + font-family: "MPLUS1p"; + font-style: normal; + src: local("MPLUS1p"), url(/fonts/ttf/MPLUS1p-Light.ttf) format("truetype"); +} diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 0000000..dccdd78 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,9 @@ +export enum ButtonSize { + Small = 'small', + Medium = 'medium', +} + +export enum InputType { + Number = 'number', + Color = 'color', +} \ No newline at end of file