浏览代码

add copyright headers

pull/32/head
Jonathan Cobb 4 年前
父节点
当前提交
7974c29cd2
共有 25 个文件被更改,包括 40 次插入0 次删除
  1. +1
    -0
      src/_components/layout/Header.vue
  2. +4
    -0
      src/_components/layout/index.js
  3. +1
    -0
      src/_components/sections/Features.vue
  4. +4
    -0
      src/_components/sections/index.js
  5. +1
    -0
      src/_components/shared/Button.vue
  6. +1
    -0
      src/_components/shared/Card.vue
  7. +1
    -0
      src/_components/shared/Checkbox.vue
  8. +1
    -0
      src/_components/shared/Input.vue
  9. +4
    -0
      src/_components/shared/index.js
  10. +1
    -0
      src/_pages/Layout.vue
  11. +1
    -0
      src/_pages/auth/ForgotPassword.vue
  12. +1
    -0
      src/_pages/auth/Layout.vue
  13. +1
    -0
      src/_pages/auth/Login.vue
  14. +1
    -0
      src/_pages/auth/NewLogin.vue
  15. +1
    -0
      src/_pages/auth/Register.vue
  16. +1
    -0
      src/_pages/auth/VerifyEmail.vue
  17. +1
    -0
      src/_pages/main/Layout.vue
  18. +1
    -0
      src/_pages/main/Test.vue
  19. +4
    -0
      src/_plugins/snotify.js
  20. +1
    -0
      src/_scss/_base.scss
  21. +1
    -0
      src/_scss/_breakpoints.scss
  22. +1
    -0
      src/_scss/_variables.scss
  23. +1
    -0
      src/_scss/components/_form.scss
  24. +1
    -0
      src/_scss/components/_text.scss
  25. +4
    -0
      webpack.config.dev.js

+ 1
- 0
src/_components/layout/Header.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div class="header d-flex align-items-center justify-content-center">
<div class="d-flex justify-content-center align-items-center container ">


+ 4
- 0
src/_components/layout/index.js 查看文件

@@ -1 +1,5 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
export { default as Header } from './Header';

+ 1
- 0
src/_components/sections/Features.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div>
<!--- We've Got You Covered Section --->


+ 4
- 0
src/_components/sections/index.js 查看文件

@@ -1 +1,5 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
export { default as Features } from './Features';

+ 1
- 0
src/_components/shared/Button.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<button
v-bind="$attrs"


+ 1
- 0
src/_components/shared/Card.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div class="card-container h-100">
<slot></slot>


+ 1
- 0
src/_components/shared/Checkbox.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div class="d-flex align-items-center">
<div


+ 1
- 0
src/_components/shared/Input.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<input v-bind="$attrs" v-model="content" @input="handleInput()" class="form-input"/>
</template>


+ 4
- 0
src/_components/shared/index.js 查看文件

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
export { default as Button } from './Button';
export { default as Card } from './Card';
export { default as Checkbox } from './Checkbox';


+ 1
- 0
src/_pages/Layout.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div class="w-100 h-100">
<router-view></router-view>


+ 1
- 0
src/_pages/auth/ForgotPassword.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div class="wrapper">
<h1 class="text-center white-text form-title">


+ 1
- 0
src/_pages/auth/Layout.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div
:class="backgroundClass"


+ 1
- 0
src/_pages/auth/Login.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div class="wrapper">
<h1 class="text-center white-text form-title">


+ 1
- 0
src/_pages/auth/NewLogin.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div>
New Login Page


+ 1
- 0
src/_pages/auth/Register.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div class="wrapper">
<h1 class="text-center white-text form-title">


+ 1
- 0
src/_pages/auth/VerifyEmail.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div class="wrapper">
<h1 class="text-center white-text form-title">


+ 1
- 0
src/_pages/main/Layout.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div>
Main Layout


+ 1
- 0
src/_pages/main/Test.vue 查看文件

@@ -1,3 +1,4 @@
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/ -->
<template>
<div>
Test Page


+ 4
- 0
src/_plugins/snotify.js 查看文件

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
import Vue from 'vue';
import Snotify, { SnotifyPosition } from 'vue-snotify';
import 'vue-snotify/styles/material.css';


+ 1
- 0
src/_scss/_base.scss 查看文件

@@ -1,3 +1,4 @@
// Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
@import 'variables';

@import 'components/text';


+ 1
- 0
src/_scss/_breakpoints.scss 查看文件

@@ -1,3 +1,4 @@
// Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
// A map of breakpoints.
$breakpoints: (
xs: 576px,


+ 1
- 0
src/_scss/_variables.scss 查看文件

@@ -1,3 +1,4 @@
// Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
// color codes

$deep-purple: #3607a6;


+ 1
- 0
src/_scss/components/_form.scss 查看文件

@@ -1,3 +1,4 @@
// Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
@import '../variables';
@import '../breakpoints';



+ 1
- 0
src/_scss/components/_text.scss 查看文件

@@ -1,3 +1,4 @@
// Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
@import '../breakpoints';

.white-text {


+ 4
- 0
webpack.config.dev.js 查看文件

@@ -1,3 +1,7 @@
/**
* Copyright (c) 2020 Bubble, Inc. All rights reserved.
* For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
*/
const webpackMerge = require('webpack-merge');

module.exports = webpackMerge.merge(require('./webpack.config.js'), {


正在加载...
取消
保存