Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hello-vuejs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nghia Pham
hello-vuejs
Commits
25af17b2
Commit
25af17b2
authored
Nov 15, 2021
by
Nghia Pham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hello VueJS
parents
Pipeline
#1508
failed with stages
in 0 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
hello.html
+29
-0
No files found.
hello.html
0 → 100644
View file @
25af17b2
<!DOCTYPE html>
<html
lang=
"en"
>
<meta>
<meta
charset=
"UTF-8"
>
<title>
Hello World in Vue.js
</title>
</meta>
<body>
<div
id=
"hello-world-app"
>
<h1>
{{ msg }}
</h1>
</div>
<script
src=
"https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"
></script>
<script>
new
Vue
({
el
:
"#hello-world-app"
,
data
()
{
return
{
msg
:
"Hello World!"
}
}
});
</script>
</body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment