vue run
1.0.0
이는
Vue
및Element
구성 요소 라이브러리를 온라인으로 실행할 수 있도록 지원하는 도구입니다.
이 도구를 사용하면 환경을 설정하지 않고도 일부 작은 데모를 실행할 수 있습니다. 코드를 붙여넣기만 하면 실행할 수 있습니다. Vue 버전과 Element 버전 간 전환을 지원합니다.
프로젝트 미리보기
yarn install
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
# Make site accessible from http://localhost/
server_name localhost;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location ~ ^/vue/ {
proxy_pass https://cdn.bootcss.com;
}
location ~ ^/element-ui/ {
proxy_pass https://cdn.bootcss.com;
}
}
yarn run serve
yarn run build
docker build -t vue-run .
docker run -i -t -p 5000:80 vue-run
http://localhost:5000
방문하여 액세스할 수 있습니다.