Manta UI - newlife-js/Wiki GitHub Wiki

1) bootstrap

bootstrap sizing

bootstrap form-inline

v5๋ถ€ํ„ฐ form-inline ๋Œ€์‹  row col class์‚ฌ์šฉ

2) component

date picker

https://vcalendar.io/?ref=madewithvuejs.com
npm i v-calendar

@main.js

import VCalendar from 'v-calendar';

Vue.use(VCalendar, {
  componentPrefix: 'vc',  // Use <vc-calendar /> instead of <v-calendar />
});

โ€ป methods์—์„œ ๋‚ ์งœ๋ฅผ ๋ฐ”๊ฟ”์ค˜๋„ ๋‹ฌ๋ ฅ์—์„œ๋Š” ์ ์šฉ์ด ์•ˆ๋˜๋Š” ๋ฌธ์ œ๊ฐ€ ์žˆ์Œ... range๋ฅผ computed์— ๋„ฃ๊ณ , computed์— ๋“ค์–ด๊ฐ€๋Š” ์†์„ฑ์„ ๋ฐ”๊ฟ”์ค˜์•ผ ํ•จ...
ํด๋ฆญ์œผ๋กœ ๋‚ ์งœ ๋ฐ”๋€” ๋•Œ ๋˜ ์—๋Ÿฌ๋‚˜์„œ.. computedํ•  ๋•Œ setter์—์„œ ๊ทธ ์†์„ฑ๊นŒ์ง€ ๋ฐ”๊ฟ”์ฃผ๋„๋ก ํ•ด์คŒ...
๋‚ ์งœ๊ฐ€ ๋ฐ”๋€Œ์–ด๋„, ๋‹ฌ๋ ฅ page๊ฐ€ ์•ˆ๋ฐ”๋€œ.. :from-page์— month, year ๊ณ„์‚ฐํ•ด์„œ ๋„˜๊ฒจ์ค˜์•ผ...

spinner

์ฐธ๊ณ 

modal

์ฐธ๊ณ 

star-rating

vue-star-rating

Google map API

vue2-google-maps
picker
info window

3) CSS

and

์—ฌ๋Ÿฌ ํด๋ž˜์Šค๊ฐ€ ๊ฐ™์€ style ๊ฐ€์ง€๊ณ  ์‹ถ์„ ๋•Œ๋Š” ,๋กœ ์—ฐ๊ฒฐ
.class1, .class2 {}

:not

์—ฌ๋Ÿฌ ํด๋ž˜์Šค๋ฅผ ๊ฐ€์ง„ element์— ๋Œ€ํ•ด์„œ, ํด๋ž˜์Šค1์€ ๊ฐ€์กŒ์ง€๋งŒ ํด๋ž˜์Šค2๋Š” ๊ฐ€์ง€์ง€ ์•Š์€ element์— ๋Œ€ํ•ด์„œ๋งŒ style์„ ์ ์šฉํ•˜๊ณ  ์‹ถ์€ ๊ฒฝ์šฐ์—๋Š”
.class1:not(.class2) { }
:not ์•ž์— ๋„์–ด์“ฐ๊ธฐ ๋„ฃ์œผ๋ฉด class1์˜ ์ž์‹ element ์ค‘ class2๊ฐ€ ์—†๋Š” ์• ๋“ค์—๊ฒŒ ์ ์šฉ๋˜๋‹ˆ ์ฃผ์˜

๊ธฐํƒ€

ion-icons

ionic.io/ionicons
Unknown custom element๋ผ๋Š” warning์ด ๋œธ
-> Vue.config.ignoredElements = ['ion-icon'] ์ถ”๊ฐ€

<ion-icon name="flash" class="thin"></ion-icon>
<ion-icon name="flash-outline"></ion-icon>
<ion-icon name="flash-sharp" size="large"></ion-icon>

.thin {
  --ionicon-stroke-width: 8px;
}

element ํ•จ์ˆ˜

myElement.focus() // input Tag์— ์ปค์„œ ๊ฐ€๋„๋ก
myElement.scrollIntoView({block:'start'}) // element ์œ„์น˜๋กœ ์Šคํฌ๋กค ์ด๋™(์Šคํฌ๋กค์˜ ์‹œ์ž‘ ์œ„์น˜๊ฐ€)
โš ๏ธ **GitHub.com Fallback** โš ๏ธ