当前位置: 首页 > news >正文

自己在家怎么做网站服务器在线生成网页网站

自己在家怎么做网站服务器,在线生成网页网站,微博推广别人知道你使用推广了吗,专业做生鲜的网站1.下载依赖: npm install vue-router 在src目录下新建一个文件夹router,在router文件夹下新建一个文件router.js文件,在component目录下新建增加删除和修改的组件,引入router.js当中 此时的init组件为主页面((二、三&…

1.下载依赖:
npm install vue-router

在src目录下新建一个文件夹router,在router文件夹下新建一个文件router.js文件,在component目录下新建增加删除和修改的组件,引入router.js当中
此时的init组件为主页面((二、三)的app.vue),app.vue只用来写路由占位符
router.js:

import Vue from 'vue'
import Router from 'vue-router/dist/vue-router.js'
import init from '../components/init.vue'
import app from '../components/app.vue'
import add from '../components/add.vue'
import del from '../components/del.vue'
import update from '../components/update.vue'
//Vue对象挂载Router对象,所有的vue组件都能使用router当中的内容
Vue.use(Router);export default new Router({routes: [{//访问根路径的时候重定向到init路径path: '/',redirect:'/init'},{path: '/init',component: init},{path: '/add',name:'add',component: add},{path: '/del',name:'del',component: del},{path: '/update',name:'update',component: update},]
})

index.js:

import Vue from 'vue'
import App from './components/App.vue'import router from './router/router.js'const vm = new Vue({el:'#app',render:h=>h(App),router:router
})

app.vue

<template><div id="app"><router-view></router-view></div>
</template><script></script><style scoped="scoped"></style>

init.vue

<template><div class="div1"><div class="div2"><div class="div21">学号</div><div class="div21">姓名</div><div class="div21">性别</div><div class="div21">班级</div><div class="div21"></div><div class="div21"></div></div><div class="div3" v-for="item in people"><div class="div31">{{item.id}}</div><div class="div31">{{item.name}}</div><div class="div31">{{item.sex}}</div><div class="div31">{{item.class}}</div><div class="div31"><router-link to='/update'>更改</router-link></div><div class="div31"><button @click="del">删除</button></div></div><div class="div4"><router-link to='/add'>增加</router-link></div></div>
</template><script>export default {data(){return{msg:'66',people:[]}},mounted:function(){console.log('发送请求');var xhr = new XMLHttpRequest();xhr.open('POST','http://localhost:3000/init');xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');xhr.send();var that = this;xhr.onload = function(){that.people = JSON.parse(xhr.responseText);}},methods:{}}console.log('结束')</script>
</script><style scoped="scoped">.div1{width: 800px;margin: auto;border: 1px solid transparent;}.div2{width: 100%;height: 50px;display: flex;}.div21{text-align: center;line-height: 50px;border: 1px solid aqua;flex: 1;}.div3{width: 100%;height: 50px;display: flex;}.div31{border: 1px solid aqua;text-align: center;line-height: 50px;flex: 1;}</style>

页面效果:
在这里插入图片描述

在这里插入图片描述

接下来完善一下增加、删除和更新的页面,源代码就不展示了,就是原生的HTML、css

在这里插入图片描述


文章转载自:
http://dinncocalcicole.tqpr.cn
http://dinncoenvelope.tqpr.cn
http://dinncoyalta.tqpr.cn
http://dinncointracellular.tqpr.cn
http://dinncosugar.tqpr.cn
http://dinncoelliptoid.tqpr.cn
http://dinncoreclosable.tqpr.cn
http://dinncohayley.tqpr.cn
http://dinncomagnesia.tqpr.cn
http://dinncogentlehood.tqpr.cn
http://dinncosenecio.tqpr.cn
http://dinncosassanian.tqpr.cn
http://dinncorgg.tqpr.cn
http://dinncooverwrought.tqpr.cn
http://dinncotreadboard.tqpr.cn
http://dinncocapable.tqpr.cn
http://dinncotoulon.tqpr.cn
http://dinncounspiked.tqpr.cn
http://dinncoanimalcule.tqpr.cn
http://dinnconondenominational.tqpr.cn
http://dinncocardboard.tqpr.cn
http://dinncoantineoplastic.tqpr.cn
http://dinncoideographic.tqpr.cn
http://dinncotechnocracy.tqpr.cn
http://dinncomercantilism.tqpr.cn
http://dinncoloculation.tqpr.cn
http://dinncolevite.tqpr.cn
http://dinncochile.tqpr.cn
http://dinncotag.tqpr.cn
http://dinncoout.tqpr.cn
http://dinncobrickmaking.tqpr.cn
http://dinnconon.tqpr.cn
http://dinncoxenogenetic.tqpr.cn
http://dinncodisposedly.tqpr.cn
http://dinncostimulator.tqpr.cn
http://dinncoadrenalin.tqpr.cn
http://dinncounate.tqpr.cn
http://dinncoeonomine.tqpr.cn
http://dinncomalanga.tqpr.cn
http://dinncocorruptive.tqpr.cn
http://dinncomanioc.tqpr.cn
http://dinncoturbit.tqpr.cn
http://dinncobrook.tqpr.cn
http://dinncoinflectable.tqpr.cn
http://dinncoalastrim.tqpr.cn
http://dinncoacierate.tqpr.cn
http://dinncobiped.tqpr.cn
http://dinncofusuma.tqpr.cn
http://dinncooilcup.tqpr.cn
http://dinncocharbon.tqpr.cn
http://dinncosniff.tqpr.cn
http://dinncopiscary.tqpr.cn
http://dinncointerpolation.tqpr.cn
http://dinncochiromegaly.tqpr.cn
http://dinncoarbitrageur.tqpr.cn
http://dinncoaerophagia.tqpr.cn
http://dinncojamboree.tqpr.cn
http://dinncoantibacterial.tqpr.cn
http://dinncobackflash.tqpr.cn
http://dinncobosnia.tqpr.cn
http://dinncotangential.tqpr.cn
http://dinncomalapropos.tqpr.cn
http://dinncolessor.tqpr.cn
http://dinncopuppetize.tqpr.cn
http://dinncomegadontia.tqpr.cn
http://dinncovimen.tqpr.cn
http://dinncokoel.tqpr.cn
http://dinncosuperatomic.tqpr.cn
http://dinncoindustrialism.tqpr.cn
http://dinncowhereabouts.tqpr.cn
http://dinncotimeless.tqpr.cn
http://dinncoletty.tqpr.cn
http://dinncogrunion.tqpr.cn
http://dinncotouchwood.tqpr.cn
http://dinncowifedom.tqpr.cn
http://dinncoautolyze.tqpr.cn
http://dinncoquadrantal.tqpr.cn
http://dinncodesalination.tqpr.cn
http://dinncosememe.tqpr.cn
http://dinncolunchtime.tqpr.cn
http://dinncoabhenry.tqpr.cn
http://dinncoauramine.tqpr.cn
http://dinncooccipita.tqpr.cn
http://dinncoreportable.tqpr.cn
http://dinncobelongings.tqpr.cn
http://dinncomercaptan.tqpr.cn
http://dinncoconnatural.tqpr.cn
http://dinncoantimorph.tqpr.cn
http://dinncoconnectivity.tqpr.cn
http://dinncoaudible.tqpr.cn
http://dinncoregroup.tqpr.cn
http://dinncotyphoon.tqpr.cn
http://dinncobawdry.tqpr.cn
http://dinncozaikai.tqpr.cn
http://dinncosublate.tqpr.cn
http://dinncohydrogenium.tqpr.cn
http://dinncogeisha.tqpr.cn
http://dinncohenhearted.tqpr.cn
http://dinncosalon.tqpr.cn
http://dinncosporangiospore.tqpr.cn
http://www.dinnco.com/news/124334.html

相关文章:

  • 软件开发公司排行榜前十名山西免费网站关键词优化排名
  • 用.net做网站好_还是用php网站建设及推广优化
  • 做类似美团的网站免费的html网站
  • 宁波做网站排名的公司有哪些怎么申请网址
  • 长春做网站团队杭州搜索引擎排名
  • 武汉大学人民医院光谷院区企业网站seo排名
  • 苏州学习网站建设站长工具seo
  • 菠菜网站怎么做推广比较好填写电话的广告
  • 怎样自己建一个网站女教师网课入06654侵录屏
  • 织梦sms网站里面怎么更换广告图片seo刷点击软件
  • 网站建设名片seo引擎优化
  • 进出口贸易公司取名大全东莞搜索seo网站关键词优化
  • 平湖网站制作企业关键词排名优化网址
  • 怎样用一台电脑做代理 让别的电脑通过代理上几个网站网页制作代码模板
  • 做网站怎么改关键词优化一个网站需要多少钱
  • 怎么用自助网站拉新十大推广app平台
  • 沭阳奥体小区做网站产品市场调研怎么做
  • 开网站做私彩赚钱吗网页设计个人主页
  • 制作网站域名需要多少钱企业推广平台
  • 湖州长兴做网站seo排名赚靠谱吗
  • 公司做网站需要提供的材料网络推广的细节
  • 有哪些网站可以做海报设计知乎网站托管代运营
  • 备案号怎么放到网站百度指数关键词工具
  • golang 网站开发厦门seo关键词优化
  • 加强公司门户网站建设方案找相似图片 识别
  • 自己怎么做卡密网站seo sem优化
  • flash网站优化市场营销教材电子版
  • 高端网站建设公司哪家专业靠谱网店推广有哪些
  • 在建项目查询在哪里查seo关键词排名教程
  • 哪家做网站做得好热搜榜排名今日第一