这篇文章主要介绍“petite-Vue怎么使用”,在日常操作中,相信很多人在petite-vue怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”petite-vue怎么
这篇文章主要介绍“petite-Vue怎么使用”,在日常操作中,相信很多人在petite-vue怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”petite-vue怎么使用”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
打开尤大大的GitHub,发现多了个叫 petite-vue 的东西,好家伙,vue3 和 Vite 还没学完呢,又开始整新东西了?本着学不死就往死里学的态度,咱还是来瞅瞅这到底是个啥东西吧,谁让他是咱的祖师爷呢!
从名字来看可以知道 petite-vue 是一个 mini 版的vue,大小只有5.8kb,可以说是非常小了。据尤大大介绍,petite-vue 是 Vue 的可替代发行版,针对渐进式增强进行了优化。它提供了与标准 Vue 相同的模板语法和响应式模型:
大小只有5.8kb
Vue 兼容模版语法
基于DOM,就地转换
响应式驱动
下面对 petite-vue 的使用做一些介绍。
<body>
<script src="https://unpkg.com/petite-vue" defer init></script>
<div v-scope="{ count: 0 }">
<button @click="count--">-</button>
<span>{{ count }}</span>
<button @click="count++">+</button>
</div>
</body>
通过 script 标签引入同时添加 init ,接着就可以使用 v-scope 绑定数据,这样一个简单的计数器就实现了。
了解过 Alpine.js 这个框架的同学看到这里可能有点眼熟了,两者语法之间是很像的。
<!-- Alpine.js -->
<div x-data="{ open: false }">
<button @click="open = true">Open Dropdown</button>
<ul x-show="open" @click.away="open = false">
Dropdown Body
</ul>
</div>
除了用 init 的方式之外,也可以用下面的方式:
<body>
<div v-scope="{ count: 0 }">
<button @click="count--">-</button>
<span>{{ count }}</span>
<button @click="count++">+</button>
</div>
<!-- 放在body底部 -->
<script src="Https://unpkg.com/petite-vue"></script>
<script>
PetiteVue.createApp().mount()
</script>
</body>
或使用 ES module 的方式:
<body>
<script type="module">
import { createApp } from "https://unpkg.com/petite-vue?module"
createApp().mount()
</script>
<div v-scope="{ count: 0 }">
<button @click="count--">-</button>
<span>{{ count }}</span>
<button @click="count++">+</button>
</div>
</body>
createApp 函数可以接受一个对象,类似于我们平时使用 data 和 methods 一样,这时 v-scope 不需要绑定值。
<body>
<script type="module">
import { createApp } from "https://unpkg.com/petite-vue?module"
createApp({
count: 0,
increment() {
this.count++
},
decrement() {
this.count--
}
}).mount()
</script>
<div v-scope>
<button @click="decrement">-</button>
<span>{{ count }}</span>
<button @click="increment">+</button>
</div>
</body>
<body>
<script type="module">
import { createApp } from "https://unpkg.com/petite-vue?module"
createApp({
count: 0
}).mount("#app")
</script>
<div id="app">
{{ count }}
</div>
</body>
可以监听每个元素的生命周期事件。
<body>
<script type="module">
import { createApp } from "https://unpkg.com/petite-vue?module"
createApp({
onMounted1(el) {
console.log(el) // <span>1</span>
},
onMounted2(el) {
console.log(el) // <span>2</span>
}
}).mount("#app")
</script>
<div id="app">
<span @mounted="onMounted1($el)">1</span>
<span @mounted="onMounted2($el)">2</span>
</div>
</body>
在 petite-vue 里,组件可以使用函数的方式创建,通过template可以实现复用。
<body>
<script type="module">
import { createApp } from "https://unpkg.com/petite-vue?module"
function Counter(props) {
return {
$template: "#counter-template",
count: props.initialCount,
increment() {
this.count++
},
decrement() {
this.count++
}
}
}
createApp({
Counter
}).mount()
</script>
<template id="counter-template">
<button @click="decrement">-</button>
<span>{{ count }}</span>
<button @click="increment">+</button>
</template>
<!-- 复用 -->
<div v-scope="Counter({ initialCount: 1 })"></div>
<div v-scope="Counter({ initialCount: 2 })"></div>
</body>
借助 Reactive 响应式 api 可以很轻松的创建全局状态管理
<body>
<script type="module">
import { createApp, reactive } from "https://unpkg.com/petite-vue?module"
const store = reactive({
count: 0,
increment() {
this.count++
}
})
// 将count加1
store.increment()
createApp({
store
}).mount()
</script>
<div v-scope>
<!-- 输出1 -->
<span>{{ store.count }}</span>
</div>
<div v-scope>
<button @click="store.increment">+</button>
</div>
</body>
这里来简单实现一个输入框自动聚焦的指令。
<body>
<script type="module">
import { createApp } from "https://unpkg.com/petite-vue?module"
const autoFocus = (ctx) => {
ctx.el.focus()
}
createApp().directive("auto-focus", autoFocus).mount()
</script>
<div v-scope>
<input v-auto-focus />
</div>
</body>
v-model
v-if / v-else / v-else-if
v-for
v-show
v-html
v-text
v-pre
v-once
v-cloak
注意:v-for 不需要key,另外 v-for 不支持 深度解构
<body>
<script type="module">
import { createApp } from "https://unpkg.com/petite-vue?module"
createApp({
userList: [
{ name: "张三", age: { a: 23, b: 24 } },
{ name: "李四", age: { a: 23, b: 24 } },
{ name: "王五", age: { a: 23, b: 24 } }
]
}).mount()
</script>
<div v-scope>
<!-- 支持 -->
<li v-for="{ age } in userList">
{{ age.a }}
</li>
<!-- 不支持 -->
<li v-for="{ age: { a } } in userList">
{{ a }}
</li>
</div>
</body>
为了更轻量小巧,petite-vue 不支持以下特性:
ref()、computed
render函数,因为petite-vue 没有虚拟DOM
不支持Map、Set等响应类型
Transition, KeepAlive, Teleport, Suspense
v-on="object"
v-is &
v-bind:style auto-prefixing
到此,关于“petite-vue怎么使用”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!
--结束END--
本文标题: petite-vue怎么使用
本文链接: https://lsjlt.com/news/96021.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0