vue 响应式ui_如何在Vue.js中设置响应式UI搜索

vue 响应式ui

Are you thinking of building something awesome with one of the popular modern frameworks out there right now, but don’t know how to get started?

您是否正在考虑使用当前流行的现代框架之一来构建出色的东西,但不知道如何入门?

If yes, then this post will help you get a kick started and build something awesome.

如果是的话,那么这篇文章将帮助您入门并建立一些很棒的东西。

What are we going to build?

我们要建造什么?

We will be building a responsive client side search of the 7 wonders of the world with the following features:

我们将通过以下功能对世界7大奇观进行响应式客户端搜索:

  1. Text Search & Filters based on Ratings and Likes.

    基于评级和喜欢的文本搜索过滤器

  2. 2 items per row for Tablet and Desktop, 1 item per row for Mobile.

    平板电脑台式机每行2项, 移动设备每行1项。

  3. Fetching data asynchronously from external API on client side.

    从客户端的外部API异步获取数据。
  4. Responsive view as shown below:

    响应视图如下图:

Live Demo: https://vue-responsive-search.herokuapp.com

现场演示 : https : //vue-sensitive-search.herokuapp.com

Source Code: https://github.com/honey93/VueSearchExample

源代码 : https : //github.com/honey93/VueSearchExample

科技架构 (Tech Architecture)

We will be working with the following technologies:

我们将使用以下技术:

  1. Vue.js: The Progressive JavaScript Framework

    Vue.js 渐进式JavaScript框架

  2. BootstrapVue: It provides one of the most comprehensive implementations of Bootstrap V4 components and grid system available for Vue.js 2.5+, complete with extensive and automated WAI-ARIA accessibility markup.

    BootstrapVue 它提供了适用于Vue.js 2.5+的Bootstrap V4组件和网格系统的最全面的实现之一,并带有大量且自动的WAI-ARIA可访问性标记。

  3. Vue Cli 3: Standard Tooling for Vue.js Development

    Vue Cli 3 用于Vue.js开发的标准工具

项目结构 (Project Structure)

To get started with our Vue project, we need to setup many things like Vue, Bootstrap, Vue Router, Vuex, etc.

要开始我们的Vue项目,我们需要设置许多东西,例如Vue,Bootstrap,Vue Router,Vuex等。

Vue Cli provides us the command to create the project with most of the needed configurations.

Vue Cli向我们提供了使用大多数所需配置来创建项目的命令。

npm install -g @vue/cli
vue create project-name

For the remaining things like BootstrapVue, vue-star-rating, etc, we can use the npm install command.

对于BootstrapVue,vue-star-rating等其余内容,我们可以使用npm install命令。

The default project created using vuecli has the following structure:

使用vuecli创建的默认项目具有以下结构:

/Root Folder Public/src/assets/  /* Static assets like images goes here */components/ /* Small part of a view */views/  /* View represents a page composed of several components*/App.vue /* The main view inside which the routing logic goes */main.js  /* App initialisation happens here  */router.js /* Router logic is defined here */store.js /* Optional state management library Vuex */package.json /* It consist of all the dependencies of the project. */......

The above things are there to explain the project architecture to you and the way to initialise it.

以上是向您解释项目架构以及初始化方式的内容。

We can get started by cloning the repository and writing the following commands:

我们可以通过克隆存储库并编写以下命令来开始使用:

npm install 
npm run serve

Some important components explained:

一些重要的组件进行了解释:

components/Header.vue

组件/Header.vue

The header has been created in the form of a single independent component so that it can be reused across pages, avoiding duplication of the code.

标头以单个独立组件的形式创建,因此可以在页面之间重用,从而避免了代码重复。

/* Vue style of writing component: template, script and style*/
<template><div class="pad-15-hor pad-15-ver header"><div><img src="@/assets/logo.png" width="25px"> Responsive Search</div><div><i class="fas fa-bars"></i></div></div>
</template>
<script>
export default {name: "Header"
};
</script>
<style scoped>
.header {display: flex;flex-flow: row wrap;justify-content: space-between;
}
</style>

components/Main.vue

组件/Main.vue

This component consist of the entire logic of search / filters and display of results fetched from the API.

此组件包含搜索/过滤器的整个逻辑以及从API提取的结果的显示。

This component is using the above Header by importing it in the script.

该组件通过将其导入脚本中来使用上述标题。

<template><div><Header/><div class="pad-15-hor pad-15-ver search-parent"><div class="search-bar"><b-form-input@input="search_text()"v-model="search.text"type="text"placeholder="Search by Name"></b-form-input><span class="search-icon"><i class="fas fa-search"></i></span></div><div><span class="bold">Total Likes:</span>{{likes.count}}<span class="bold">Hits:</span>{{likes.hit}}</div><div><b-form-select @input="sort()" v-model="search.filter" :options="options"/></div></div>
<div class="container-fluid"><div class="row"><div class="col-md-6 pad-15-ver" v-for="wonder in wonders_data" :key="wonder.id"><divclass="card-inner"@mouseover="show_hover(true,wonder.id)"@mouseout="show_hover(false,0)"><img class="card-img" :src="wonder.imageURL">
<div class="card-bottom pad-15-hor" v-show="!hover_flag || active_id != wonder.id"><div class="min-width-160"><span class="bold">Ratings:</span><star-rating:rating="wonder.ratings":show-rating="false":inline="true":star-size="15"></star-rating></div><div class="max-width-160"><span class="bold">{{wonder.place}}</span></div></div>
<div :class="{'card-hover':1}" v-show="hover_flag && active_id == wonder.id"><span@click="make_active(wonder.id)":class="{'fas':1, 'fa-heart':1, 'absolute-star':1, 'green':check_active(wonder.id)}">{{wonder.likes}}</span><h5>{{wonder.place}}</h5><p>{{wonder.description}}</p></div></div></div></div></div></div>
</template>
<script>
/* Importing Header to use in this component */ 
import Header from "@/components/Header.vue";
/* Importing axios for async REST calls */
import axios from "axios";
export default {name: "Main",
/* mounted gets called when the component gets mounted. AJAX calls are preferred in mounted lifecycle method */mounted() {this.hover_flag = false;
var inside = this;
axios.get("https://www.mocky.io/v2/5c7b98562f0000c013e59f07").then(function(response) {//console.log(response);
inside.wonders_data_actual = response.data.data;
response.data.data.map(function(wonder) {inside.likes.count += wonder.likes;});
inside.wonders_data_actual = inside.wonders_data_actual.map(function(wonder) {wonder.active_like = false;return wonder;});inside.wonders_data = response.data.data;}).catch(function(error) {// console.log(error);});},
/* All the data variable declaration are done here:  */data() {return {hover_flag: false,wonders_data_actual: [],wonders_data: [],active_id: 0,options: [{ value: null, text: "Sort By" },{ value: "a", text: "Ratings" },{ value: "b", text: "Likes" }],search: { filter: null, text: "" },likes: { count: 0, hit: 0 }};},
/* Methods are defined here */methods: {show_hover(flag, active_id) {this.hover_flag = flag;this.active_id = active_id;},sort() {//console.log(this.search.filter);this.search.filter == "b"? this.wonders_data.sort(function(a, b) {return b.likes - a.likes;}): this.wonders_data.sort(function(a, b) {return b.ratings - a.ratings;});},search_text() {//console.log(this.search.text);
var inside = this;
this.wonders_data = this.wonders_data_actual.filter(function(wonder) {if (wonder.place.toLowerCase().indexOf(inside.search.text.toLowerCase()) != "-1") {return wonder;}});},check_active(id) {var flag = false;this.wonders_data_actual.map(function(wonder) {if (wonder.id == id) {flag = wonder.active_like;}});return flag;},make_active(id) {this.likes.hit++;this.wonders_data_actual = this.wonders_data_actual.map(function(wonder) {if (wonder.id == id) {wonder.active_like = !wonder.active_like;wonder.active_like ? wonder.likes++ : wonder.likes--;}
return wonder;});var inside = this;
inside.likes.count = 0;this.wonders_data_actual.map(function(wonder) {inside.likes.count += wonder.likes;});}},components: {Header}
};
</script>
<style scoped> /* Styles are scoped to this component only.*/
/* Style for Desktop/Tablet  */
.search-parent {display: flex;flex-flow: row wrap;justify-content: space-between;background-color: lightgray;
}
.card-inner {position: relative;overflow: hidden;box-shadow: 2px 2px 8px grey;
}
.card-img {width: 100%;
}
.card-bottom {position: absolute;bottom: 0;left: 0;height: 30px;width: 100%;background-color: white;opacity: 0.7;display: flex;justify-content: space-between;
}
.card-hover {position: absolute;right: 15px;left: 15px;top: 15px;bottom: 15px;background-color: white;opacity: 0.7;display: flex;flex-flow: column wrap;justify-content: center;align-items: center;
}
.absolute-star {position: absolute;top: 10px;right: 10px;
}
.card-hover p {font-size: 10px;text-align: center;
}
.bold {font-weight: 500;
}
.rating-div {width: 200px;
}
.search-bar {position: relative;
}
.search-bar input {padding-left: 30px;
}
.search-icon {position: absolute;top: 8px;left: 8px;
}
/* For Mobile Device, we will be going with column wrap approach */
@media screen and (max-width: 550px) {.search-parent {display: flex;flex-flow: column wrap;justify-content: center;align-items: center;background-color: lightgray;}
.search-parent div {width: 100%;text-align: center;}
}
</style>

I hope you have a better understanding of how to get started with Vue and create something awesome.

我希望您对如何开始使用Vue并创建很棒的东西有更好的了解。

If you found this helpful, clap below, give stars to the project repo and share with your friends too.

如果您觉得有帮助,请在下面一下,给项目回购加注 星号 ,并与您的朋友分享。

翻译自: https://www.freecodecamp.org/news/how-to-set-up-responsive-ui-search-in-vue-js-bf6007b7fc0f/

vue 响应式ui

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392002.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

兰州交通大学计算机科学与技术学院,兰州交通大学

信息与计算科学专业依托数学和计算机科学与技术两个一级学科硕士学位授予点&#xff0c;运筹学与控制论、计算机科学与技术两个省级重点学科&#xff0c;培养理工融合、学科交叉的创新性人才。自2008年以来&#xff0c;承担国家自然科学基金10余项&#xff0c;发表SCI收录杂志论…

leetcode 424. 替换后的最长重复字符(滑动窗口)

给你一个仅由大写英文字母组成的字符串&#xff0c;你可以将任意位置上的字符替换成另外的字符&#xff0c;总共可最多替换 k 次。在执行上述操作后&#xff0c;找到包含重复字母的最长子串的长度。 注意&#xff1a;字符串长度 和 k 不会超过 104。 示例 1&#xff1a; 输入…

javascript放在head和body的区别(w3c建议放在head标签中)

JavaScript脚本放在哪里 在HTML body部分中的JavaScripts会在页面加载的时候被执行。 在HTML head部分中的JavaScripts会在被调用的时候才执行。—————————————————————————— JavaScript应放在哪里 页面中的JavaScripts会在浏览器加载页面的时候被立即…

jQuery事件整合

一、jQuery事件 1、focus&#xff08;&#xff09;元素获得焦点 2、blur&#xff08;&#xff09;元素失去焦点 3、change&#xff08;&#xff09; 表单元素的值发生变化&#xff08;可用于验证用户名是否存在&#xff09; 4、click&#xff08;&#xff09; 鼠标单击 5、dbc…

tableau跨库创建并集_刮擦柏林青年旅舍,并以此建立一个Tableau全景。

tableau跨库创建并集One of the coolest things about making our personal project is the fact that we can explore topics of our own interest. On my case, I’ve had the chance to backpack around the world for more than a year between 2016–2017, and it was one…

策略模式下表单验证

策略模式下表单验证 class Validator {constructor(strategies) {this.cache []}add(value, rules) {if (!rules instanceof Array) throw rules should be Arrayvar self thisfor(var i 0, rule; rule rules[i];) {(function(rule) {var strategyArr rule.strategy.split…

在五分钟内学习使用Python进行类型转换

by PALAKOLLU SRI MANIKANTA通过PALAKOLLU SRI MANIKANTA 在五分钟内学习使用Python进行类型转换 (Learn typecasting in Python in five minutes) 以非常详尽的方式介绍了Python中的类型转换和类型转换的速成课程 (A crash course on Typecasting and Type conversion in Pyt…

Ajax post HTML 405,Web API Ajax POST向返回 405方法不允许_jquery_开发99编程知识库

因此&#xff0c;我有一個像這樣的jquery ajax請求&#xff1a;function createLokiAccount(someurl) {var d {"Jurisdiction":17}$.ajax({type:"POST",url:"http://myserver:111/Api/V1/Customers/CreateCustomer/",data: JSON.stringify(d),c…

leetcode 480. 滑动窗口中位数(堆+滑动窗口)

中位数是有序序列最中间的那个数。如果序列的大小是偶数&#xff0c;则没有最中间的数&#xff1b;此时中位数是最中间的两个数的平均数。 例如&#xff1a; [2,3,4]&#xff0c;中位数是 3 [2,3]&#xff0c;中位数是 (2 3) / 2 2.5 给你一个数组 nums&#xff0c;有一个大…

1.0 Hadoop的介绍、搭建、环境

HADOOP背景介绍 1.1 Hadoop产生背景 HADOOP最早起源于Nutch。Nutch的设计目标是构建一个大型的全网搜索引擎&#xff0c;包括网页抓取、索引、查询等功能&#xff0c;但随着抓取网页数量的增加&#xff0c;遇到了严重的可扩展性问题——如何解决数十亿网页的存储和索引问题。20…

如何实现多维智能监控?--AI运维的实践探索【一】

作者丨吴树生&#xff1a;腾讯高级工程师&#xff0c;负责SNG大数据监控平台建设。近十年监控系统开发经验&#xff0c;具有构建基于大数据平台的海量高可用分布式监控系统研发经验。 导语&#xff1a;监控数据多维化后&#xff0c;带来新的应用场景。SNG的哈勃多维监控平台在完…

.Net Web开发技术栈

有很多朋友有的因为兴趣&#xff0c;有的因为生计而走向了.Net中&#xff0c;有很多朋友想学&#xff0c;但是又不知道怎么学&#xff0c;学什么&#xff0c;怎么系统的学&#xff0c;为此我以我微薄之力总结归纳写了一篇.Net web开发技术栈&#xff0c;以此帮助那些想学&#…

使用Python和MetaTrader在5分钟内开始构建您的交易策略

In one of my last posts, I showed how to create graphics using the Plotly library. To do this, we import data from MetaTrader in a ‘raw’ way without automation. Today, we will learn how to automate this process and plot a heatmap graph of the correlation…

卷积神经网络 手势识别_如何构建识别手语手势的卷积神经网络

卷积神经网络 手势识别by Vagdevi Kommineni通过瓦格德维科米尼(Vagdevi Kommineni) 如何构建识别手语手势的卷积神经网络 (How to build a convolutional neural network that recognizes sign language gestures) Sign language has been a major boon for people who are h…

spring—第一个spring程序

1.导入依赖 <dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.0.9.RELEASE</version></dependency>2.写一个接口和实现 public interface dao {public void save(); }…

请对比html与css的异同,css2与css3的区别是什么?

css主要有三个版本&#xff0c;分别是css1、css2、css3。css2使用的比较多&#xff0c;因为css1的属性比较少&#xff0c;而css3有一些老式浏览器并不支持&#xff0c;所以大家在开发的时候主要还是使用css2。CSS1提供有关字体、颜色、位置和文本属性的基本信息&#xff0c;该版…

基础 之 数组

shell中的数组 array (1 2 3) array ([1]ins1 [2]ins2 [3]ins3)array ($(命令)) # 三种定义数组&#xff0c;直接定义&#xff0c;键值对&#xff0c;直接用命令做数组的值。${array[*]}${array[]}${array[0]} # 输出数组中的0位置的值&#xff0c;*和…

Linux_异常_08_本机无法访问虚拟机web等工程

这是因为防火墙的原因&#xff0c;把响应端口开启就行了。 # Firewall configuration written by system-config-firewall # Manual customization of this file is not recommended. *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -m st…

Building a WAMP Dev Environment [3/4] - Installing and Configuring PHP

Moved to http://blog.tangcs.com/2008/10/27/wamp-installing-configuring-php/转载于:https://www.cnblogs.com/WarrenTang/archive/2008/10/27/1320069.html

ipywidgets_未来价值和Ipywidgets

ipywidgetsHow to use Ipywidgets to visualize future value with different interest rates.如何使用Ipywidgets可视化不同利率下的未来价值。 There are some calculations that even being easy becoming better with a visualization of his terms. Moreover, the sooner…