Uniapp Vue3 基础知识点附带实例

简介: Uniapp Vue3 基础知识点附带实例

包括数据绑定和计算属性、条件渲染和列表渲染、事件处理、表单输入处理、生命周期钩子、自定义指令和过滤器、路由和导航以及状态管理(如Vuex):

<template>
  <div>
    <!-- 条件渲染 -->
    <div v-if="showMessage">Hello, {{ name }}</div>
    <div v-else>Welcome!</div>
    <!-- 列表渲染 -->
    <ul>
      <li v-for="(item, index) in items" :key="index">{{ item }}</li>
    </ul>
    <!-- 表单输入处理 -->
    <input v-model="message" placeholder="Enter your message" />
    <button @click="handleClick">Submit</button>
    <!-- 自定义指令和过滤器 -->
    <p v-custom-directive="'highlight'">This is a highlighted text.</p>
    <p>{{ message | customFilter }}</p>
    <!-- 路由和导航 -->
    <router-link to="/about">About</router-link>
    <router-view></router-view>
    <!-- 状态管理(Vuex) -->
    <store-component></store-component>
  </div>
</template>
<script setup>
import { ref, computed } from 'vue';
import { useRouter } from 'vue-router';
import { useStore } from 'vuex';
// 数据绑定和计算属性
const name = ref('John Doe');
const showMessage = computed(() => name.value !== '');
// 事件处理
function handleClick() {
  console.log('Button clicked:', message.value);
}
// 路由和导航
const router = useRouter();
const navigateToAbout = () => {
  router.push('/about');
};
// 状态管理(Vuex)
const store = useStore();
const getCount = () => store.state.count;
const incrementCount = () => store.dispatch('increment');

请注意,上述代码中的v-custom-directive是一个自定义指令,你需要在Vue应用中定义该指令。同样,customFilter也是一个自定义过滤器,你需要在Vue应用中定义该过滤器。此外,store-component是一个Vue组件,用于演示Vuex的使用,你需要在Vue应用中定义该组件。

相关文章
|
1月前
|
JavaScript
vue知识点
10月更文挑战第2天
34 3
|
15天前
|
API
vue3知识点:provide 与 inject
vue3知识点:provide 与 inject
28 4
vue3知识点:provide 与 inject
|
15天前
|
API
vue3知识点:readonly 与 shallowReadonly
vue3知识点:readonly 与 shallowReadonly
24 1
vue3知识点:readonly 与 shallowReadonly
|
15天前
|
JavaScript Java API
vue3知识点:setup
vue3知识点:setup
27 5
|
15天前
|
API
vue3知识点:reactive对比ref
vue3知识点:reactive对比ref
26 3
|
15天前
|
API
vue3知识点:响应式数据的判断
vue3知识点:响应式数据的判断
24 3
|
17天前
|
前端开发 UED
vue3知识点:Suspense组件
vue3知识点:Suspense组件
29 4
|
15天前
|
JavaScript API
vue3知识点:ref函数
vue3知识点:ref函数
28 2
|
15天前
|
API
vue3知识点:shallowReactive 与 shallowRef
vue3知识点:shallowReactive 与 shallowRef
22 2
|
15天前
|
JavaScript API
vue3知识点:自定义hook函数
vue3知识点:自定义hook函数
25 2
下一篇
无影云桌面