Skip to content

New vue Update .gitignore #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ bower_components
# node-waf configuration
.lock-wscript

<script src="https://cdn.jsdelivr.net



# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

Expand Down Expand Up @@ -56,3 +60,87 @@ typings/

# dotenv environment variables file
.env
<script>

new Vue(

{

el: '#app_basic',

data: {

message: '🐵 Hello World 🔮',

timestamp: `Timestamp ${new Date().toLocaleString()}`,

}

});

</script>
<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>Vue Test</title>

<!-- This is a development version of Vue.js! -->

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

<!-- import stylesheet -->

<link rel="stylesheet" href="styles.css">

<!-- Google fonts -->

<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">

</head>

<body>

<!-- Basic usage -->

<div id="app_basic" v-bind:title="timestamp" class="experiment-block">

{{ message }}

</div>

<script>

new Vue(
{

"scripts": {

"start": "browser-sync start --server 'src' --files 'src' --single"

}

}
{

el: '#app_basic',

data: {

message: '🐵 Hello World 🔮',

timestamp: `Timestamp ${new Date().toLocaleString()}`,

}

});

</script>

</body>

</html>