- Описание
- Кто использует
- Установка
- Использование
- Выражения
- Директивы
- Рендеринг списков
- Binding
- Actions / events
- Структура компонента
- Пользовательские события
- Жизненный цикл компонента
- Использование одного слота
- Использование нескольких слотов
- Полезные ссылки
Vue.js — это прогрессивный фреймворк для создания пользовательских интерфейсов. В отличие от фреймворков-монолитов, Vue создан пригодным для постепенного внедрения. Его ядро в первую очередь решает задачи уровня представления (view), что упрощает интеграцию с другими библиотеками и существующими проектами. С другой стороны, Vue полностью подходит и для создания сложных одностраничных приложений (SPA, Single-Page Applications), если использовать его совместно с современными инструментами и дополнительными библиотеками.
- GitLab
- Facebook (Newsfeed)
- Netflix (internal apps)
- Xiaomi
- Alibaba
- EuroNews
- Laracasts
- Codeship
# Установка пакета
sudo npm install -g @vue/cli
# Генерация приложения
vue create project_name
cd project_name
# Запуск для разработки
npm run serve
# Сборка проекта
npm run build
<div id="app">
<p>I have a {{ product }}</p>
<p>{{ product + 's' }}</p>
<p>{{ isWorking ? 'YES' : 'NO' }}</p>
<p>{{ product.getSalePrice() }}</p>
</div>
// Element inserted/removed based on truthiness
<p v-if="inStock">{{ product }}</p>
<p v-else-if="onSale">...</p>
<p v-else>...</p>
// Toggles the display: none CSS property
<p v-show="showProductDetails">...</p>
// Two-way data binding
<input v-model="firstName" >
<... v-model.lazy="..." > // Syncs input after change event
<... v-model.number="..." > // Always returns a number
<... v-model.trim="..." > // Strips whitespace
// Key always recommended
<li v-for="item in items" :key="item.id">
{{ item }}
</li>
// To access the position in the array
<li v-for="(item, index) in items">...
// To iterate through objects
<li v-for="(value, key) in object">...
// Using v-for with a component
<cart-product v-for="item in products" :product="item" :key="item.id">
<a v-bind:href="url">...</a>
<a :href="url">...</a> // Shorthand
// True or false will add or remove attribute
<button :disabled="isButtonDisabled">...
// If isActive is truthy, the class ‘active’ will appear
<div :class="{ active: isActive }">...
// Style color set to value of activeColor
<div :style="{ color: activeColor }">
// Calls addToCart method on component
<button v-on:click="addToCart">...
<button @click="addToCart">... // Shorthand
// Arguments can be passed
<button @click="addToCart(product)">...
// To prevent default behavior (e.g. page reload)
<form @submit.prevent="addProduct">...
// Only trigger once
<img @mouseover.once="showImage">...
.stop // Stop all event propagation
.self // Only trigger if event.target is element itself
// Keyboard entry example
<input @keyup.enter="submit">
// Call onCopy when control-c is pressed
<input @keyup.ctrl.c="onCopy">
Key modifiers:
.tab
.delete
.esc
.space
.up
.down
.left
.right
.ctrl
.alt
.shift
.meta
Mouse modifiers:
.left
.right
.middle
Vue.component('my-component', {
// Components that can be used in the template
components: {
ProductComponent, ReviewComponent
},
// The parameters the component accepts
props: {
message: String,
product: Object,
email: {
type: String,
required: true,
default: "none",
validator: function (value) {
// Should return true if value is valid
}
}
},
// Must be a function
data: function() {
return {
firstName: 'Vue',
lastName: 'Mastery'
}
},
// Return cached values until dependencies change
computed: {
fullName: function () {
return this.firstName + ' ' + this.lastName
}
},
watch: {
// Called when firstName changes val
firstName: function (value, oldValue) { ... }
},
methods: { ... },
// Can also use backticks for multi-line
template: '<span>{{ message }}</span>',
})
// Use props (above) to pass data into child components, custom events to pass data to parent elements.
// Set listener on component, within its parent
<button-counter v-on:incrementBy="incWithVal">
// Inside parent component
methods: {
incWithVal: function (toAdd) { ... }
}
// Inside button-counter template
this.$emit('incrementBy', 5) // Data sent up to parent
// Component template
<div>
<h2>I'm a title</h2>
<slot>
Only displayed if no slot content
</slot>
</div>
// Use of component with data for slot
<my-component>
<p>This will go in the slot</p>
</my-component>
// Component template
<div class="container">
<header>
<slot name="header"></slot>
</header>
<main>
<slot>Default content</slot>
</main>
<footer>
<slot name="footer"></slot>
</footer>
</div>
// Use of component with data for slot
<app-layout>
<h1 slot="header">Page title</h1>
<p>the main content.</p>
<p slot="footer">Contact info</p>
</app-layout>