The Wayback Machine - https://web.archive.org/web/20200223030338/https://github.com/topics/vue
Skip to content
#

Vue.js

vue logo

Vue is a JavaScript framework for building websites. The intent of Vue is to make the integration of other JavaScript libraries easy. It is designed to organize and simplify web development.

Here are 23,001 public repositories matching this topic...

YanDevDe
YanDevDe commented Feb 18, 2020

What problem does this feature solve?

It would allow us to use numbers which is larger than MAX_SAFE_INTEGER.

What does the proposed API look like?

In HTML, {{BigInt("100")}}, {{100n}}, {{2n * 50n}} or {{50n + 50n}} should show "100" (it can be just simply string by using .toString()) at frontend.
At the moment using BigInt in "Mustache" syntax just throw error.
Sure, backu

storybook
levelingup
levelingup commented Dec 24, 2019

I tried to follow the initial steps from here: https://www.learnstorybook.com/intro-to-storybook/react/en/get-started/

running:

npx create-react-app taskbox
cd taskbox

Then when I ran:
npx -p @storybook/cli sb init

I get the error TypeError: Cannot set property 'storybook' of undefined

This is the full message in my terminal:

 sb init - the simplest way to add a
menghuanCode
menghuanCode commented Feb 12, 2020

Element UI version

2.13.0

OS/Browsers version

window10/ 76.0.3809.132 (64 位)

Vue version

2.6.11

Reproduction Link

https://github.com/menghuanCode/element-issue

Steps to reproduce

  1. vue create . (create a project)
    使用 Vue-cli@3 创建一个项目
  2. npm install element-ui
  3. npm install babel-plugin-comp
ionic
mattsteve
mattsteve commented Feb 5, 2020

Feature Request

Ionic version:
[x] 4.x or 5.x

Describe the Feature Request
Currently if you present multiple toasts in the same position they show on top of one another which looks like a bug.

Describe Preferred Solution
I would suggest one of two things:

  1. Implement toast stacking. If you present multiple toasts, they display in a list like the phone's notifi
manniL
manniL commented Oct 12, 2019

What problem does this feature solve?

To make sure the user doesn't accidentally generates an SPA while he wants a pre-rendered page, it might be worth to write a short sentence about the mode of the project while generating

What does the proposed changes look like?

Current status: "Generating pages" is logged, which is quite general.

![image](https://user-images.githubusercont

sheetjs
jasperchou
jasperchou commented Dec 26, 2019

问题描述
编译出来的图片、css文件名都没有带hash,对cdn极其不友好

复现步骤
[复现问题的步骤]
打包h5平台可以看到

预期结果
如同vue默认编译打包的文件一样

.
├── css
│   ├── about.b1fea8d8.css
│   └── app.27e4a8b9.css
├── favicon.ico
├── img
│   ├── btn_android@2x.b8ff7715.png
│   ├── btn_ios@2x.68fbbb2a.png
│   ├── head.0887223a.png
│   ├── logo@2x.e30dcfbd.png
│   └── pic@2x.115118db.png
├── index.html
├── js
│   ├── about.
bernica
bernica commented Jan 28, 2020

Is your feature request related to a problem? Please describe.
When implementing a textField with next return key type, the keyboard is dismissed and focusing another textField brings it back BUT a flick is produced.

Describe the solution you'd like
I'd like to be able to prevent the textFieldShouldReturn implementation from always dimissing soft input.

**Describe alternatives yo

funlee
funlee commented Mar 6, 2019

在ES5中,顶层对象的属性和全局变量是等价的,var 命令和 function 命令声明的全局变量,自然也是顶层对象。

var a = 12;
function f(){};

console.log(window.a); // 12
console.log(window.f); // f(){}

但ES6规定,var 命令和 function 命令声明的全局变量,依旧是顶层对象的属性,但 let命令、const命令、class命令声明的全局变量,不属于顶层对象的属性。

let aa = 1;
const bb = 2;

console.log(window.aa); // undefined
console.log(window.bb); // undefined

在哪里?怎么获取?通过在设置断点,看看浏览器是

postwoman
debjeetsarkar
debjeetsarkar commented Nov 26, 2019

Is your feature request related to a problem? Please describe.
There is no comprehensive tooling while working with MQTT brokers.

Describe the solution you'd like
A simple interface to connect to an MQTT broker.
Subscribe to topics
Publish to topics

Describe alternatives you've considered
MQTT Lens

tanyichao2017
tanyichao2017 commented Jun 10, 2019

VUX version

2.9.4

OS/Browsers version

windows/Google-chrome 75版本

Vue version

2.6.10

Code

F:\code\vux2\docs>node compile
fs.js:646
  return binding.open(pathModule._makeLong(path), stringToFlags(flags), mode);
                 ^

Error: ENOENT: no such file or directory, open 'F:\c
shadyabhi
shadyabhi commented Nov 17, 2019

Describe your feature request

Just like we can attach images, it would be great to attach random files like pdfs. Those documents can be uploaded to the same Github repo just like images are being uploaded currently.

Additional context [optional]

While taking notes, it is great to have the ability of uploading random pdfs that I used as reference for writing my notes.

zhangyaguang-aimm
zhangyaguang-aimm commented Oct 19, 2018

每次提交代码之前都会以下报错,导致无法提交:
running pre-commit hook: lint-staged
❯ Running tasks for *.js
✖ vue-cli-service lint
→ 1 error found.
git add
❯ Running tasks for *.vue
✖ vue-cli-service lint
→ 5 errors found.
git add
✖ vue-cli-service lint found some errors. Please fix them and try committing again.

有没什么方法关闭这个eslint

chenjiahan
chenjiahan commented Jan 13, 2020

发布 Vant 3.0 🔥

在 2020 年上半年,我们的主要目标是发布 Vant 3.0 版本,主要包含以下更新:

  • 基于 Vue 3.0 开发,使用 Composition API 重构所有组件,增强组件间的逻辑复用并减少包体积。
  • 使用 TypeScript 重构所有代码,提供更完善的类型支持。
  • 增加更多实用的基础组件,如 Form、Popover。
  • 完善组件交互,如 Tab 增加滑动切换动画,ImagePreview 支持原生级的手势操作。
  • 提供更好的文档、更丰富的示例,文档无止境。

由于 Vue 3.0 已经发布了第一个 alpha 版本,Vant 3.0 也将于近期正式启航。我们会在 [next](https://github.com/

Created by Evan You

Released February 2014

Latest release 2 months ago

Repository
vuejs/vue
Website
vuejs.org
Wikipedia
Wikipedia

Related Topics

angular react
You can’t perform that action at this time.