Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged VUE
0
votes
2.4k
views
1
answer
vue router - Vue.js - How to remove hashbang #! from url?
How to remove hashbang #! from url? I found option to disable hashbang in vue router documentation ( http://vuejs. ... !/home BUT: /home Thanks! See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.4k
views
1
answer
vue component - Vue.js | Aggregate data of siblings
I have a parent component that renders a grid of many cells. Each cell of the grid is a child component ... //stackoverflow.com/questions/65885290/vue-js-aggregate-data-of-siblings...
asked
Oct 7, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.3k
views
1
answer
vue component - What is v-mdl in vue.js?
What is v-mdl (not v-model) in vue.js ? I have started working on a project and I am seeing v-mdl in some places as follows: <div :id="id" v-mdl class="item" @click="toggle()">...
asked
Feb 19, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.1k
views
1
answer
vue 怎么在列表list组件初始化(被渲染)时给它传递所需要的值
是否有初始化相关事件或者方法可以使用? 列表有若干条目,这些由一个数组传入 我想在这个组件被渲染时,把这个数组传入,能够把这些条目都渲染出来 <div> <p id="proPanelTitle" class="proPanelSeparate"> ... 们的列表内容Array传递进去 使其具有条目 但是我没查到有这方面的事件或者方法,能够获取这个时机 ...
asked
Feb 19, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.1k
views
1
answer
vue list 列表绑定的数据 发现太长 能挪哪里去不
父级模板 <div> <p id="proPanelTitle" class="proPanelSeparate">属性面板</p> <div class="proPanelSeparate"> <p class=" ... props: { id: String, defaultStr:String, selectedItems:Array } });...
asked
Feb 19, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.4k
views
1
answer
vue 组件 怎么监听 getters过来的数据
vue 组件 怎么监听 getters过来的数据...
asked
Feb 19, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.3k
views
1
answer
vue cli构建的项目中,vue组件里怎么引入外部js文件里的方法
我想在content组件里调用外部js(test.js)里的diyfun方法,怎么实现呢? 我的content组件代码: <template> <div> <input ref='test' id="test"> <button @click='diyfun'>Click< ... 码一多看着好乱,就想将方法定义在外部js文件里,在组件里调用它,求实现方法 ...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.4k
views
1
answer
vue router在vue里面使用导航钩子时报错?
Maximum call stack size exceeded? created(){ this.params._xsrf = window.localStorage.getItem("_xsrf"); this.getGroupsList(); /*echart*/ }, ... 的 如果 不写next() 就不会报错,这是怎么回事呢?求解答...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.3k
views
1
answer
vue 路由管理还有更合理高效的方法吗?
目前vue项目中路由使用 vue-router,随着项目越来越复杂,感觉路由全部写在了 routers.js文件中已经不太适合管理,所以想请教下还有更合理有效的路由管理方式吗(基于vue-router)?...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.5k
views
1
answer
vue 2.0使用路由在切换页面动画在ios中会出现一闪的问题
这里是我的切换页面的动画 这是我的页面连接使用苹果手机的可以点击进取看看 http://139.199.155.229:8888/i......
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.4k
views
1
answer
vue proxyTable 问题
开发环境下,采用 https://github.com/vuejs-templates/webpack 配置,后台服务出口 http://localhost:9000/rest,配置 ... /rest (ECONNRESET) (https://nodejs.org/api/errors.html#errors_common_system_errors)...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.2k
views
1
answer
vue router导航栏到底该怎么加?
细致描述一下我的问题: 我的需求其实很简单,但是被vue-router 的router view搞晕了 需求是:做一个导航栏,点击导航,其下方内容改变(也就是切换 一个view) 最开始我是这样想的 在App.vue 文件里面 直接写上 导航如下 ... 不多啊 为啥他的就不会出现我那种重复渲染的现象 求大神,解答疑惑,谢谢了%>_<%...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.3k
views
1
answer
vue 中怎么获取原生事件对象?
比如说click 事件,原生事件里还包括鼠标的 x , y 信息等,怎么能在 vue 组件的 method 方法中获取到这个原生事件。 如果组件是别人的,如果不改代码我是不是就没办法拿到原生事件了。 element ui 是全局使用的,我只能再拷一份改?...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.2k
views
1
answer
vue 在页面加载的时候会重绘app区域内所有节点吗?
<form id="faq-edit-form" action="http://ask-dev.itgcs.wang/question" method="post" onsubmit="return false"> <input value=" ... 写;当初始化app 的时候 vue 会重绘整个 form 表单么?...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.4k
views
1
answer
vue init webpack my-project报错
vue-cli · Failed to download repo vuejs-templates/webpack: unable to verify the first certificate...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.1k
views
1
answer
vue 中输出的对象带有get set方法 怎么样让他没有get set 保持原来的样子?
如图所示 讲vue自动生成的get set 暂时清理掉 好观察数据...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.2k
views
1
answer
vue 如何处理一个完全动态渲染的表单?
一个内容不固定,完全由后端数据渲染的表单,没法预先声明要绑定的字段,怎么处理才能更好的使用?...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.4k
views
1
answer
vue 请求加载数据的时候如何显示加载动画
<div class="spinner" v-show='loadFlag'></div> <button class="btn lesson-more-btn" id='judge-more' v-on:click='judgeLoadMore'>加载更多</button> ... ()感觉都不完美,前者数据都加载完了动画还在,后者则没有效果 ...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.5k
views
1
answer
vue router 路由组件不显示
刚学vue试试路由跳转页不显示 不知道哪里问题 求教大神 项目结构 index.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>vueaaa</ ... : utils.assetsPath('fonts/[name].[hash:7].[ext]') } } ] } }...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.1k
views
1
answer
vue 中,数据驱动怎么理解
初学vue ,对数据驱动不是理解得很好;拿个具体的例子来说: 比如说写文章,写完提交到actions 处理,actions 请求api 保存,api 返回结果,那么返回结果做页面跳转处理 那么这里我有疑问, 我是在actions 提 ... 要映射state 到编辑视图,还要watch 状态;而回调处理则省去了watch 和状态映射 应该才用哪种方法呢?...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.2k
views
1
answer
vue 多个input 编辑时监听
想在这种情况下,当修改其中一个input时,显示对应的确定button,怎么才能监听到 <div v-for="n in fruit"> <div> <input type="text" name="" :value="n.apples ... 54}, {'oranges': 12}, {'bananas': 4}, {'peachs': 45}, ] }...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.3k
views
1
answer
vue 在不使用 vuex 的情况下组件与组件之间的通信问题
三个组件: index.vue register.vue login.vue 说明一下彼此之间的关系: index.vue 包含 login.vue 通过 prop 属性和 自定义事件 vue.$emit('xxx') 通信 register.vue 包含 ... .vue 都绑定了通信 如果不用 vuex 我这个问题有没有可以解决的办法 非常感谢...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.1k
views
1
answer
vue 页面不渲染,但是没有报错?
main.js import Vue from 'vue' import VueRouter from 'vue-router' import routes from './router/' import store from './store/' ... } } </script> <style scoped lang="scss"> </style>...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.3k
views
1
answer
vue http请求 delete传值问题
目前在前台是这样v.http.delete(BASE.ctxpath + '/file',{params:fileId}) 结果是这样 但是正确的是 正确的是使用了resource组件 求解决方法...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.2k
views
1
answer
vue component 在页面加载好时不显示。如何让它显示?
<project-comp></project-comp>在页面加载好时不显示,但是我已经在created钩子里面赋值给app.projects了 请问怎样让它在页面加载好时就显示呢? Vue.component('project- ... , function(data){ this.projects = data; }, 'json' ); }, });...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.1k
views
1
answer
vue 里的值怎么分配给 html或class呢?
怎么把icon的值赋给i标签里的class 渲染后: <i class="fa fa-gratipay fa-3x"></i> new Vue({ el: '#app', data: { icon: 'fa-gratipay' } })...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.1k
views
1
answer
vue -router 跳转不刷新怎么解决(不刷新 window.onload中渲染画布的函数就不执行)
切换标签不显示 但如果刷新页面就能显示出来 切换的时候元素也都出来了 proSkill.vue <template> <div class="wrapper"> <span class="title">前端技 ... overflow: hidden; } ol{ color: aliceblue; font-size: .9rem; } </style>...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
0
votes
2.2k
views
1
answer
vue -router 跳转不刷新怎么解决(不刷新 window.onload中渲染画布的函数就不执行)
切换标签不显示 但如果刷新页面就能显示出来 切换的时候元素也都出来了 proSkill.vue <template> <div class="wrapper"> <span class="title">前端技 ... overflow: hidden; } ol{ color: aliceblue; font-size: .9rem; } </style>...
asked
Feb 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
vue
To see more, click for the
full list of questions
or
popular tags
.
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] lodash.camelCase
[2] r - How to use mathematical notation or engineering notation in certain columns of a kableExtra table?
[3] c++ - Cannot remove duplicated Android 6.0.0 Clang compilers kits auto-detected in Qt6
[4] VUE slot 插入前怎么处理插入的内容
[5] save created excel file to azure blob container. path issue
[6] go 写了tar打包的程序,但是目录结构丢失
[7] dataframe - How to change date format in R data frame and add to new column?
[8] MongoDB - find entries where field with specific name is present, nested anywhere
[9] model - Want to develop a Local search engine
[10] javascript - Ag grid Enterprise Server side Custom Filter not working
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...