Skip to content

Commit 463c9c9

Browse files
vinklayyx990803
authored andcommitted
Switch to https (#3864)
Replaced all http vuejs.org links with https instead.
1 parent c2e6bf8 commit 463c9c9

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Got a question?
88
===============
99
The issue list of this repo is **exclusively** for bug reports and feature requests. For simple questions, please use the following resources:
1010
11-
- Read the docs: http://vuejs.org/guide/
11+
- Read the docs: https://vuejs.org/guide/
1212
- Watch video tutorials: https://laracasts.com/series/learning-vue-step-by-step
1313
- Ask in the Gitter chat room: https://gitter.im/vuejs/vue
1414
- Ask on the forums: http://forum.vuejs.org/

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<p align="center"><a href="http://vuejs.org" target="_blank"><img width="100"src="http://vuejs.org/images/logo.png"></a></p>
1+
<p align="center"><a href="https://vuejs.org" target="_blank"><img width="100"src="https://vuejs.org/images/logo.png"></a></p>
22

33
<p align="center">
44
<a href="https://circleci.com/gh/vuejs/vue/tree/dev"><img src="https://img.shields.io/circleci/project/vuejs/vue/dev.svg" alt="Build Status"></a>
@@ -58,13 +58,13 @@ Vue.js is an MIT-licensed open source project. Its ongoing development is made p
5858

5959
Vue.js is a library for building interactive web interfaces. It provides data-reactive components with a simple and flexible API. Core features include:
6060

61-
- [Declarative rendering with a plain JavaScript object based reactivity system.](http://vuejs.org/guide/index.html#Declarative-Rendering)
62-
- [Component-oriented development style with tooling support](http://vuejs.org/guide/index.html#Composing-with-Components)
61+
- [Declarative rendering with a plain JavaScript object based reactivity system.](https://vuejs.org/guide/index.html#Declarative-Rendering)
62+
- [Component-oriented development style with tooling support](https://vuejs.org/guide/index.html#Composing-with-Components)
6363
- Lean and extensible core
64-
- [Flexible transition effect system](http://vuejs.org/guide/transitions.html)
64+
- [Flexible transition effect system](https://vuejs.org/guide/transitions.html)
6565
- Fast without the need for complex optimization
6666

67-
Note that Vue.js only supports [ES5-compliant browsers](http://kangax.github.io/compat-table/es5/) (IE8 and below are not supported). To check out live examples and docs, visit [vuejs.org](http://vuejs.org).
67+
Note that Vue.js only supports [ES5-compliant browsers](http://kangax.github.io/compat-table/es5/) (IE8 and below are not supported). To check out live examples and docs, visit [vuejs.org](https://vuejs.org).
6868

6969
## Questions
7070

examples/elastic-header/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<draggable-header-view>
3232
<template slot="header">
3333
<h1>Elastic Draggable SVG Header</h1>
34-
<p>with <a href="http://vuejs.org">Vue.js</a> + <a href="http://dynamicsjs.com">dynamics.js</a></p>
34+
<p>with <a href="https://vuejs.org">Vue.js</a> + <a href="http://dynamicsjs.com">dynamics.js</a></p>
3535
</template>
3636
<template slot="content">
3737
<p>Note this is just an effect demo - there are of course many additional details if you want to use this in production, e.g. handling responsive sizes, reload threshold and content scrolling. Those are out of scope for this quick little hack. However, the idea is that you can hide them as internal details of a Vue.js component and expose a simple Web-Component-like interface.</p>

examples/todomvc/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var app = new Vue({
5555
},
5656

5757
// computed properties
58-
// http://vuejs.org/guide/computed.html
58+
// https://vuejs.org/guide/computed.html
5959
computed: {
6060
filteredTodos: function () {
6161
return filters[this.visibility](this.todos)
@@ -129,7 +129,7 @@ var app = new Vue({
129129

130130
// a custom directive to wait for the DOM to be updated
131131
// before focusing on the input field.
132-
// http://vuejs.org/guide/custom-directive.html
132+
// https://vuejs.org/guide/custom-directive.html
133133
directives: {
134134
'todo-focus': function (el, value) {
135135
if (value) {

examples/todomvc/readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
> Vue.js is a library for building interactive web interfaces.
44
It provides data-driven, nestable view components with a simple and flexible API.
55

6-
> _[Vue.js - vuejs.org](http://vuejs.org)_
6+
> _[Vue.js - vuejs.org](https://vuejs.org)_
77
88
## Learning Vue.js
9-
The [Vue.js website](http://vuejs.org/) is a great resource to get started.
9+
The [Vue.js website](https://vuejs.org/) is a great resource to get started.
1010

1111
Here are some links you may find helpful:
1212

13-
* [Official Guide](http://vuejs.org/guide/)
14-
* [API Reference](http://vuejs.org/api/)
15-
* [Examples](http://vuejs.org/examples/)
16-
* [Building Larger Apps with Vue.js](http://vuejs.org/guide/application.html)
13+
* [Official Guide](https://vuejs.org/guide/)
14+
* [API Reference](https://vuejs.org/api/)
15+
* [Examples](https://vuejs.org/examples/)
16+
* [Building Larger Apps with Vue.js](https://vuejs.org/guide/application.html)
1717

1818
Get help from other Vue.js users:
1919

test/unit/modules/vdom/modules/dom-props.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ describe('vdom domProps module', () => {
1111

1212
it('should change the elements domProps', () => {
1313
const vnode1 = new VNode('a', { domProps: { src: 'http://localhost/' }})
14-
const vnode2 = new VNode('a', { domProps: { src: 'http://vuejs.org/' }})
14+
const vnode2 = new VNode('a', { domProps: { src: 'https://vuejs.org/' }})
1515
patch(null, vnode1)
1616
const elm = patch(vnode1, vnode2)
17-
expect(elm.src).toBe('http://vuejs.org/')
17+
expect(elm.src).toBe('https://vuejs.org/')
1818
})
1919

2020
it('should remove the elements domProps', () => {

0 commit comments

Comments
 (0)