vue3.2图片上传Demo搭建 5 修改 文件名

这个博客介绍了如何在Vue.js应用中创建和使用模态框组件,包括文件重命名功能。在MyFiles.vue组件中,实现了文件列表的显示、排序、搜索以及删除功能。当选择一个文件后,可以通过模态框进行重命名,并且在FileRenameForm组件中利用v-focus指令自动聚焦到输入字段。此外,还展示了如何全局注册组件和使用axios进行API调用处理文件操作。
摘要由CSDN通过智能技术生成

新建Model.vue

<template>
  <div v-if="show">
    <div class="modal-mask">
      <div class="modal-wrapper">
        <div class="modal-dialog">
          <div class="modal-content">
            <div class="modal-header">
              <h5 class="modal-title">{
  { title }}</h5>
              <button
                type="button"
                class="btn-close"
                data-bs-dismiss="modal"
                aria-label="Close"
                @click="$emit('hide')"
              ></button>
            </div>
            <div class="modal-body">
              <slot />
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>

<script setup>
defineProps({
  title: {
    type: String,
    required: true,
  },
  show: {
    type: Boolean,
    default: false,
  },
});
</script>

<style scoped>
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}
</style>

全局使用

import { createApp } from 'vue'
import App from './App.vue'

import icons from './components/icons/all'
import  Modal from './components/Model.vue'
const app=createApp(App)
// app.component("icon-upload",IconUpload) //注册全局组件

for(const[ key,value] of Object.entries(icons)){
    app.component(key,value)
}//注册全局组件

app.component("app-modal",Modal);
app.mount('#app')

ActionBar.vue  添加点击emit

<template>

    <div class="d-flex
 justify-content-between 
 align-items-center 
 border-bottom 
 pt-2 
 pb-3">

        <button class="btn btn-outline-primary">
            <icon-upload />上传
        </button>
        <div class="action-buttons" v-show="selectedItems.length">
            <button type="button" class="rounded-button" title="Rename" @click="$emit('rename')"  v-show="selectedItems.length===1">
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值