๋ฐ์ํ
# ๋ก์ปฌ ์ค์น
npm install @vue/cli
# ์ ์ญ ์ค์น
npm install -g @vue/cli
# ์
๋ฐ์ดํธ
npm update @vue/cli
# ์ญ์
npm uninstall @vue/cli
npm ๊ฒฝ๋ก ํ์ธ
npm config get prefix
์ค๋ฅ ๋ ๊ฒฝ์ฐ : ํ๊ฒฝ๋ณ์ Path์ ์ถ๊ฐ
C:\Users\{YourUse}\AppData\Roaming\npm
project ์์ฑ
vue create vue-test
vue-router ์ค์น
npm install vue-router --save
bootstrap vue ์ค์น
npm install vue bootstrap-vue bootstrap
main.js ์ ์๋ ๋ถ๋ถ ์ถ๊ฐ ํ๋ค.
import { BootstrapVue, IconsPlugin } from 'bootstrap-vue'
// Install BootstrapVue
Vue.use(BootstrapVue)
// Optionally install the BootstrapVue icon components plugin
Vue.use(IconsPlugin)
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
<main.js>
import Vue from 'vue'
import App from './App.vue'
import { BootstrapVue, IconsPlugin } from 'bootstrap-vue'
// Install BootstrapVue
Vue.use(BootstrapVue)
// Optionally install the BootstrapVue icon components plugin
Vue.use(IconsPlugin)
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')
.vue ํ์ผ์์ <template></template> ์ฌ์ด์๋ html ์ฝ๋ ์์ฑ
<script>
export default {
name: "header",
}
</script>
๋ฐ์ํ
'Web > Vue' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Vue.js] vue-router.js cdn ์ค๋ฅ (0) | 2022.05.04 |
---|---|
[Vue] router multiple paths, redirect to default path (1) | 2021.04.14 |
[Vue.js] Vuetify, v-data-table (0) | 2020.12.02 |
Vuetify, refs (0) | 2020.11.27 |
[Vue] Vuetify Quick Start (0) | 2020.07.14 |