Как изменять переменную Vue js и вне?
Как изменять переменную Vue js и вне? Пробовал так:
<script>
export default {
data() {
return {
newstext: "Loading"
}
},
methods: {
},
components: {
navbar,
mapss,
mm,
},
}
function b() {
this.newstext = "Notload"
}
</scrit>
Но ничего не вышло.