목록javascript (4)
우도비
vue init webpack-simple 으로 만든 템플릿만든후 테스트 서버 포트변경하는 방법 When using the webpack-simple template, you can add a "port" property to the devServer object in webpack.config.js and assign it to whatever value you want, like so:devServer: { historyApiFallback: true, noInfo: true, port: 9080 },
Hello, {{ name }}!', props: ['name'], }); In JavaScript, strings aren't allowed to span over multiple lines. If you want to give your template some room to breath, you can use template literals. // greeter.js Vue.component('greeter', { template: ` Hello, {{ name }}! `, props: ['name'], }); You could also define the template in a separate file if..
http://ohyecloudy.com/ddiary/2016/09/04/til-npm-install-save-or-save-dev/ 그냥 install 하면 ./디렉node_modules 터리에 패키지 설치를 하고 끝. --save, --save-dev 옵션은 ./package.json 업데이트를 같이해준다. 어디에 패키지 정보를 추가하느냐가 다른데, --save 옵션은 dependencies object에 추가하고 --save-dev 옵션은 devDepenencies object에 추가한다.dependencies와 devDepenencies 차이는 npm install을 할 때 나타난다. dependencies는 항상 설치되고 devDepenencies는 --production 옵션을 붙이면 빠진다. ..
Jquery 갤러리 라이브러리http://unitegallery.net/