/
ehsizer
/
VUEblog
Обзор
Документация
Войти
/
ehsizer
/
VUEblog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Components/UI/MyButton.vue
20 строк
247 B
Admin
Blog basic layout
04 июн 2024, 19:27
04 июн 2024, 19:27
0d70ab6
Код
Авторство
О чём код?
<template> <button class="btn"> <slot></slot> </button> </template> <script> export default { name: "my-button" } </script> <style scoped> .btn{ padding: 10px 15px; background: none; color: teal; border: 1px solid darkgray; } </style>