세일즈포스 (3) 썸네일형 리스트형 사용자 암호 만료 기간 해제 및 MFA 인증 해제 https://help.salesforce.com/s/articleView?id=sf.admin_password.htm&type=5 Set Password PoliciesGeneral Information We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and tohelp.salesforce.com 사용자 암호 만료 기간 해제 - 설정 - 암호 정책.. LWC - 2 (간단한 입력 받기) LWC에서 사용자에게 간단한 입력을 받을 수 있는 컴포넌트를 만들어보자. 1. html 파일 Employee Name : {name} Employee Age : {age} Employee Salary : {salary} 2. js 파일 import { LightningElement, track } from 'lwc';export default.. LWC - 1 (Basic) LWC의 기본적인 코드 구성은 3개로 이루어진다. 1. html 파일2. js 파일3. xml 파일 html 파일의 경우 간략한 예시를 살펴보면 hello, {greeting} 태그 안에 태그 그리고 일반적인 html 태그들이 있다. js 파일의 경우에는 import { LightningElement, track } from 'lwc';export default class HelloWorld extends LightningElement { @track greeting = 'World'; changeHandler(event){ this.greeting = event.target.v.. 이전 1 다음