Vue JS 3 Tutorial - 5 - Binding Text

preview_player
Показать описание

📱 Follow Codevolution

Рекомендации по теме
Комментарии
Автор

Angular, Vue and Bruce Wayne - Batman. I really love this. Thanks for your tutorial.

pranaykalgutkar
Автор

I'm only here to try and learn as much as I can in 1-2 days before I start working on a major project

konodioda
Автор

Your training is easy to follow through.

paulnganga
Автор

Please can you do alot of videos on Vue, i just really love it so much like u channel and i would appreciate if you did more vue videos like u did on react

kylediamond
Автор

Please do tutorial on react router and react testing library

santhoshraghavpidathala
Автор

This guy knows how to explain staff...

DevTheLee
Автор

after deleting those helloworld file error shows what to do

christianwhatsappstatus
Автор

I got this error "The template root requires exactly one element"

kevinnowalski
Автор

Hello,
I have the following inside the "App.vue", the <div> works fine.
However, I can't put this div to the area like above
<h3>Essential Links</h3> of the HelloWorld.vue
Please help


<template>
<img alt="Vue logo" src="./assets/logo.png">
<div> {{ greet }}
{{ name }}</div>

<div v-text="channel"></div>

<HelloWorld msg="Welcome to Your Vue.js App 123"/>
</template>

<script>
import HelloWorld from './components/HelloWorld.vue'

export default {
name: 'app',

data() {
return {
greet: "Hello",
name: "Ipman1",
channel: "NestaChannel"
};
},

components: {
HelloWorld
}
}
</script>

nestaho
visit shbcf.ru