1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Vue下拉框动态加载数据

Vue下拉框动态加载数据

时间:2023-04-13 03:06:51

相关推荐

Vue下拉框动态加载数据

Vue下拉框动态加载数据

<template><a-select v-model="model.type" show-search placeholder="请选择下拉框数据" style="width: 100%"><a-select-option v-for="item in info" v-bind:key="item.id" :value="item.id">{{item.name }}</a-select-option></a-select></template><script>import {httpAction, getAction } from '@/api/manage'export default {name: 'CqTaskForm',components: {},data() {return {info: [],},url: {info: '**********',},},created() {this.getPublisher();},method:{getAction(this.url.info).then((res) => {if(res && res.success) {this.info = res.data}})}}</script>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。